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 abuilder
and alistener
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 theDeexStore
state. -
DeexListener<
S> = void Function(BuildContext context, S state) -
A function that performs side effects based on the
BuildContext
and theDeexStore
state.