states_rebuilder 1.6.0
states_rebuilder: ^1.6.0 copied to clipboard
a simple yet powerful state management technique for Flutter
1.6.0 #
- Add
Injector.getAsModelmethod. When called with the context parameter, the calling widget is automatically registered as a listener. - Add
setState(Function(state))to mutate the state and update the dependent the views from the UI. - Model class have not to extend
StatesRebuilderto get reactivity. - Add the named constructor
Inject.futurewhich take a future and update dependents when future completes. - Add the named constructor
Inject.streamwhich take a steam and update dependents when stream emits a value. Injector.getorInjector.getAsModelnow throws if no registered model is found. This can be silent by setting the parametersilentto true- Injected model ara lazily instantiated. To do otherwise set the parameter
isLazyof theInjectwidget to false.
1.5.1 #
- add
afterInitialBuildandafterRebuildparameters to theStateBuilder,StateWithMixinBuilderandInjectorwidgets.afterInitialBuildandafterRebuild` are callBack to be executed after the widget is mounted and after each rebuild.
1.5.0+1 #
- Use
ObservableServiceandhasStateinstead ofObservableandhasObserver, because the latters are widely used and can lead to conflict
1.5.0 #
- Add
hasStatesgetter to check if the StatesRebuilder object has listener. - Add
injectparameter to theInjectorwidget as an alternative to themodelsparameter. Withinjectyou can register models using interface Type. - Add
observableinterface. Any service class can implement it to notify any ViewModel to rebuild its corresponding view. - Refactor the library to make it design patterns wise and hence make it testable.
- Test the library
1.3.2 #
- Add
appLifeCycleargument to Injector to track the life cycle of the app. - Refactor the code.
1.3.1 #
- remove
rebuildFromStreams. - Initial release of
Streamingclass - The builder closure of the
Injectortakes (BuildContext context, T model) where T is the generic type. - Fix typos
1.3.0 #
- Initial release of
rebuildFromStreamsmethod. - Initial release of
Injectorfor Dependency Injection. - deprecate blocs parameter and use viewModels instead
- StateBuilder can have many tags.
1.2.0 #
- Remove
stateIDand replace it bytagparameter.tagis optional and many widgets can have the same tag. rebuildStates()when called without parameters, it rebuilds all widgets that are wrapped withStateBuilderandStateWithMixinBuilder.- Each
StateBuilderhas an automatically generated cached address. It is stored in the second parameter of thebuilder,initState,dispose, and other closures. You can call it inside the closures to rebuild that particular widget. - add
StateWithMixinBuilderwidget to account for some of the most used mixins. - Optimize the code and improve performance
1.1.0 #
- Add
withTickerProviderparameter toStateBuilderwidget.
1.0.0 #
- Add
BlocProviderto provide your BloCs. - You can use enums to name your
StateBuilderwidgets. rebuildStatesnow has only one positioned parameter of List- If
rebuildStatesis given without parameter, it will rebuild all widgets that havestateID. - improve performance.
0.1.4 #
- improve performance
0.1.3 #
- Add getter and setter for the stateMap.
0.1.2 #
- Remove print statements
0.1.1 #
- Change readme.md of the example
0.1.0 #
- Initial version