state_manager/widgets/deex_consumer library

Classes

DeexConsumer<S extends DeexStore>
A widget that listens to a DeexStore and rebuilds when the state changes. It combines both a builder and a listener callback.
DeexConsumerState<S extends DeexStore>

Typedefs

DeexBuilder<S> = Widget Function(BuildContext context, S state)
A function that returns a widget based on the BuildContext and the DeexStore state.
DeexListener<S> = void Function(BuildContext context, S state)
A function that performs side effects based on the BuildContext and the DeexStore state.