flutter_triple 1.2.2
flutter_triple: ^1.2.2 copied to clipboard
Implementation of the Segmented State Pattern (SSP) nicknamed Triple.
[1.2.2] - 2021-07-09 #
- Fix ScopedBuild first event in triple;
[1.2.0] - 2021-07-02 #
- Added [factory] ScopedBuilder.transition for customization of main widget.
ScopedBuilder.transition(
store: counter,
transition: (_, child) {
return AnimatedSwitcher(
duration: Duration(milliseconds: 400),
child: child,
);
},
onLoading: (_) => Text('Loading...'),
onState: (_, state) => Text('$state'),
),
[1.0.6] - 2021-05-10 #
- Update Triple package
[1.0.5+1] - 2021-03-30 #
- Updated RxNotifier
- Updated Triple
- Updated documentation
[1.0.0] - 2021-03-03 #
The Initial version providers:
- StreamStore and NotifierStore
- RxNotifier support
- Triple Tracking
- rxObserver
- ScopedBuilder and TripleBuilder