Skip to content

State Management Flutter. Flutter BloC Cubit with Repository Pattern example. The Cubit is a subset of the famous implementation of BLoC Pattern

Notifications You must be signed in to change notification settings

muhammadshoaib06/flutter_bloc_cubit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flutter BloC Cubit Repository Pattern:

The Cubit is a subset of the famous implementation of BLoC Pattern: bloclibrary.dev, it abandons the concept of Events and simplifies the way of emitting states.

What’s a Cubit?

It’s a class that stores an observable state, the observation is powered by Streams but in such a friendly way that it is not necessary to know reactive programming Use super() to override the initial state.