states_rebuilder 1.2.0
states_rebuilder: ^1.2.0 copied to clipboard
a simple yet powerful state management technique for Flutter
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
BlocProvderto 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