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