flutter_hive_provider_example icon indicating copy to clipboard operation
flutter_hive_provider_example copied to clipboard

A Flutter App example of managing state with Provider, while storing data persistently with Hive.

Flutter Hive Provider Example

A basic contact management flutter app demonstrating the use of Provider for state management and Hive for persistent data storage.

Every time persistent data is changed (when a contact is added or deleted from hive), the provider data is refreshed from hive. The ui is updated by calling notifyListeners();.