state_manager/rx_flutter/rx_flutter library

Classes

CustomStatus<T>
Deex
The simplest reactive widget in Deex.
DeexListenable<T>
DeexNotifier<T>
DeexNotifier has a native status and state implementation, with the Deex Lifecycle
DeexValue<T extends DeexInterface>
Similar to Deex, but manages a local state. Pass the initial data in constructor. Useful for simple local states, like toggles, visibility, themes, button states, etc. Sample: DeexValue((data) => Switch( value: data.value, onChanged: (flag) => data.value = flag, ), false.obs, ),
EmptyStatus<T>
ErrorStatus<T, S>
LoadingStatus<T>
RxStatus<T>
RxWidget
The RxWidget is the base for all Deex reactive widgets
SuccessStatus<T>
Value<T>

Mixins

StateMixin<T>

Extensions

StateExt on StateMixin<T>
StatusDataExt on RxStatus<T>

Typedefs

FuturizeCallback<T> = Future<T> Function(VoidCallback fn)
NotifierBuilder<T> = Widget Function(T state)
VoidCallback = void Function()
WidgetCallback = Widget Function()