Storing data in Flutter Web using Hive

Flutter Web and Hive

Aseem Wangoo
Flutter Community
4 min readOct 13, 2020

--

Hive in Flutter Web

How to store data in browser in Flutter Web? Hmm…

All in one Flutter resource: https://flatteredwithflutter.com/using-hive-in-flutter-web/

Pre-Requisite:

This article assumes the reader knows about code generation in the Flutter.

Begin…

View the demo here

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

We will cover briefly about

  1. Storing data using Hive
  2. Data operations
  3. Real-time UI updates
Flutter Web and Hive

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.

--

--