jcraven-worksight / hydrated

🚰 A BehaviorSubject for Flutter with automatic persist and hydrate

Home Page:https://pub.dartlang.org/packages/hydrated

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hydrated

Hydrated provides a BehaviorSubject that automatically persists to Flutter's local storage and hydrates on creation!

Easy to consume

All values are persisted with shared_preferences and restored with automatic hydration.

final count$ = HydratedSubject<int>("count", seedValue: 0);

/// count$ will automagically be hydrated with 42 next time it is created
count$.add(42);

Ready for BLoC

class HydratedBloc {
  final _count$ = HydratedSubject<int>("count", seedValue: 0);

  ValueObservable<int> get count$ => _count$.stream;
  Sink<int> get setCount => _count$.sink;

  dispose() {
    _count$.close();
  }
}

Supports simple types and serialized classes

We support all shared_preferences types.

  • int
  • double
  • bool
  • String
  • List<String>
final count$ = HydratedSubject<int>("count");

We also support serialized classes with hydrate and persist arguments.

final user$ = HydratedSubject<User>(
  "user",
  hydrate: (String s) => User.fromJSON(s),
  persist: (User user) => user.toJSON(),
);

Reliable

Hydrated is mock tested with all supported types and is dogfooded by its creator.

demo of Hydrated tests completing successfully

Demo

demo of Hydrated BehaviorSubject between app restarts

Contributing

The goal of Hydrated is to make persistence of BLoC classes as simple as possible for Flutter projects. PRs are welcome, but be warned that I am committed to simplicity.

About

🚰 A BehaviorSubject for Flutter with automatic persist and hydrate

https://pub.dartlang.org/packages/hydrated

License:MIT License


Languages

Language:Dart 76.4%Language:Ruby 13.4%Language:Java 5.6%Language:Objective-C 4.6%