trex 1.0.0 copy "trex: ^1.0.0" to clipboard
trex: ^1.0.0 copied to clipboard

discontinuedreplaced by: turbo
outdated

Hooks, Statable Widgets, Trackable Variables, Extensions - The most efficient State Management solution...

T-Rex #

Hooks, Controller-pattern, and Datatype extensions to make development easier and efficient. T-Rex is a compact, simple State Management solution for your Flutter Applications, implemented without using Streams or any complicated abstractions.

Most State Management solutions use Streams to notify changes to data. This becomes highly unintuitive and inefficient when you have a lot of state variables and data changes to watch out for. T-Rex doesn't use Streams, and use basic features of Dart to provide a wide-variety of State Management solutions.

Tx<T> Trackable Variables #

Tx<int> count = Tx(
    0,
    afterChange: (_) {
        this.setState(() {});
    }
);

The simplest way to manage state, for very simple widgets and screens.

1
likes
0
pub points
21%
popularity

Publisher

verified publisheraldrinsartfactory.com

Hooks, Statable Widgets, Trackable Variables, Extensions - The most efficient State Management solution...

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on trex