rebloc icon indicating copy to clipboard operation
rebloc copied to clipboard

A state management library for Flutter that combines aspects of Redux and BLoC.

Results 5 rebloc issues
Sort by recently updated
recently updated
newest added

Thanks for the great library! Could you help to update the dependencies to follow the latest release? Thanks!

Dependencies that updated: - rxdart: 0.27.7 - lint: 1.10.0

Thanks for the great library rebloc. I am trying to figure out how I can use a SimpleBloc with a widget that has TextFields. I have seen samples where the...

a quick fix: ```diff --- engine.dart +++ engine.dart @@ -104,8 +104,10 @@ reducerStream.listen((a) { assert(a.state != null); - states.add(a.state); - _afterwareController.add(WareContext(dispatcher, a.state, a.action)); + if (a.action is! _CancelledAction) { +...

Hello @RedBrogdon Thanks for the package, since I stumbled upon it, its been my number choice for state management. This question has been asked before, so I took time out...