33
Different ways of local storage in flutter
Different ways of local storage in flutter
In flutter mobile applications we have different ways to store data in locally
They are
Sharedpreference
SharedPreferences is used for storing data key-value pair in the Android and iOS.
SharedPreferences in flutter uses NSUserDefaultson iOS and SharedPreferences on Android, providing a persistent store for simple data
How to use SharedPreferences in Flutter?
Sqflite database
SQflite is a plugin for flutter. It allows us store, retrieve and manipulate our SQLite databases via flutter code. SQflite supports both Android and iOS platforms
Here are some of the features of SQFlite:
Hive Database
Hive is a quick, lightweight, NoSQL database for flutter and dart applications. Hive is truly helpful if you need a straightforward key-value database without numerous relations and truly simple to utilize. It is an offline database(store data in local devices). It has no native dependencies (it runs on Flutter Web!) can be the ideal choice. Hive bolsters all stages upheld by Flutter
How to setup Hive database in flutter
33