Using Hive to store the data as a Offline. Hive is a lightweight and blazing fast key-value database written in pure Dart.
Fork this repo
$ git clone https://github.com/<username_github>/flutter_hive_note_app
$ flutter clean
$ flutter pub get
f5 or click on RUN
hive
hive_flutter
path_provider
var box = Hive.box('myBox');
box.put('name', 'David');
var name = box.get('name');
print('Name: $name');