reactter 3.0.0-dev.5 reactter: ^3.0.0-dev.5 copied to clipboard
Reactter is a light, powerful and reactive state management.
Reactter examples #
This page contains several examples with different feature of reactter.
Quickstart #
Run next commands:
flutter create .
flutter run
for Github search example add http permission:
Counter #
Increment and decrement counter.
Learn how to change value state.
Implements: ReactterBuilder
, ReactterContext
, ReactterProvider
, UseContext
, UseState
.
Todos #
Add, remove todo to list, mark, unmark todo as completed and filter todo list.
Learn how to add context dynamic and manage its state.
Implements: ReactterBuilder
, ReactterComponent
, ReactterContext
, ReactterProvider
, UseContext
, UseState
, UseEffect
.
Shopping cart #
Add, remove product to cart and checkout.
Learn how to access to other context and keep its state.
Implements: ReactterBuilder
, ReactterComponent
, ReactterContext
, ReactterProvider
, UseContext
, UseState
, UseEffect
.
Tree widget #
Add, remove and hide child widget with counter.
Learn how to add or remove context dynamic and keep its state.
Implements: ReactterBuilder
, ReactterComponent
, ReactterContext
, ReactterProvider
, UseContext
, UseState
.
Github search #
Search user or repository and show info about it.
Learn how to manage state in async way.
Implements: ReactterBuilder
, ReactterContext
, ReactterComponent
, ReactterProvider
, UseContext
, UseAsyncState
, UseState
.
Animate widget #
Change size, shape and color.
Learn how to create a custom hook.
Implements: ReactterBuilder
, ReactterContext
, ReactterHook
, ReactterProvider
, ReactterSubscribersManager
, UseContext
.