How to do a database query with SQFlite in Flutter
Add the dependencies Open pubspec.yaml and in the dependencies section add the following lines: sqflite: ^1.0.0 path_provider: ^0.4.1 The sqflite is the SQFlite plugin of course and the path_provider will help us get the user directory on Android and iPhone. You can check the most up-to-date version numbers here: sqflite and path_provider. Make a database … Read more