flutter_mediator_simple 1.1.2
flutter_mediator_simple: ^1.1.2 copied to clipboard
A state management package for flutter. Simple, efficient and easy to use.
1.1.2 #
- Upgrade sdk to dart 3.0.0, and use final class.
- Support mediator variable of type
Function, to use as a computed mediator variable.
For example,
final _sum = Rx(() => int1 + int2 + int3 as dynamic); // use `dynamic` if will change the return type
get sum => _sum.value;
set sum(value) => _sum.value = value;
1.1.1 #
- Minor improvement.
1.0.0 #
- A rework of the flutter mediator package, simple, efficient and easy to use.