rebloc 0.0.2 copy "rebloc: ^0.0.2" to clipboard
rebloc: ^0.0.2 copied to clipboard

outdated

A state management library for Flutter that combines aspects of Redux and BLoC. Where traditional Redux implementations use functional programming techniques to compose middleware and reducers togethe [...]

Use this package as a library

Depend on it

Run this command:

With Flutter:

 $ flutter pub add rebloc

This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

dependencies:
  rebloc: ^0.0.2

Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

Import it

Now in your Dart code, you can use:

import 'package:rebloc/rebloc.dart';
17
likes
0
pub points
49%
popularity

Publisher

unverified uploader

A state management library for Flutter that combines aspects of Redux and BLoC. Where traditional Redux implementations use functional programming techniques to compose middleware and reducers together, Rebloc uses streams. Devlopers can create business logic components (BLoCs) that provide middleware and reducer functionality, and link them into the dispatch->middleware->reducer stream. Also included in the library is a set of Widgets for subscribing to the stream of app states emitted by a Store, building view models from it, and rebuilding Widget subtrees when distinctly new view models result.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, meta, rxdart

More

Packages that depend on rebloc