flutter_cubit. A Flutter library built to expose widgets that integrate with cubits . Built to work with the cubit and bloc state management packages.
Read moreWhat is a Flutter cubit?
flutter_cubit. A Flutter library built to expose widgets that integrate with cubits . Built to work with the cubit and bloc state management packages.
Read moreWhat are Bloc events?
Bloc is similar to Cubit , but it uses events to do all its work . Like Cubit , the state is held in the Bloc , then to change or add new state, events are added to the Bloc . When an event is added to the Bloc , the onEvent method is called. After this onEvent method is called, a transform events method is called.
Read moreWhat is BlocSupervisor?
BlocSupervisor oversees Bloc s and delegates to BlocDelegate . BlocDelegate handles events from all Bloc s which are delegated by the BlocSupervisor . Can be used to intercept all Bloc events, transitions, and errors. It is a great way to handle logging/analytics as well as error handling universally.
Read more