Flutter SQLite Update Record Data From the database SQFLITE CRUD (Part - 3)

preview_player
Показать описание
#flutterPlabs #flutter #Plabs #sql #sqlite #sqflite #database #databasecrud
Flutter SQLite Update Record Data From the database SQFLITE CRUD (Part - 3)

🚀 Unlock endless possibilities. Download Plabs Source and code like a pro! 🌟

🔽 Download This Source code From Plabs Source

Don't wait! Start coding smarter and faster now. Your projects deserve the best tools.
Рекомендации по теме
Комментарии
Автор

I did this, when I return to the main page, the data is updated ))

localDb.dart

Future readAllData() async {
final db = await database;
final allData = await db!.query('Localdata');
WholeDataList = allData;
return WholeDataList;
}


main.dart

List? _dataBase;

@override
void initState() {
_loadDB();
super.initState();
}

_loadDB() async {
_dataBase = await
setState(() {});
}

yakut
visit shbcf.ru