BlocConsumer
BlocConsumer with automatically retrieved Bloc
BlocConsumer
exposes a content
and listener
in order react to new Bloc
states. BlocConsumer
is equivalent to a combined BlocBuilder and BlocListener
BlocConsumer for externally provided Bloc
This is the same as the previous method but with an explicitly specified Bloc
instance externallyProvidedBlock
, not retrieved implicitly from current registered blocs in the current composable subtree.
Use this method if for example you have retrieved the Bloc already with rememberProvidedBlocOf
Last updated