Flutter Web and Hive

Flutter Web and Hive

Oct 10, 2020

Website: https://web.flatteredwithflutter.com/#/

We will cover briefly about

  1. Storing data using Hive

  2. Data operations

  3. Real-time UI updates

Storing data using Hive

Hive is a lightweight and key-value database. It supports mobile, desktop, and browser.

We can save data from primitives like strings to complex custom objects.

Note: Install both hive and hive_flutter

Configure Hive

Inside your main.dart, initialize Hive using

await Hive.initFlutter();

and register the adapter which was generated using code generation above. We specify the type of model (in our case ArticlesModel).

Medium: https://medium.com/flutter-community/flutter-web-and-hive-709fdb9920a2

Website: https://flatteredwithflutter.com/using-hive-in-flutter-web/

DevTo: https://dev.to/aseemwangoo/flutter-web-and-hive-527c

Enjoy this post?

Buy Aseem Wangoo a coffee

More from Aseem Wangoo