In this course will learn about the basics of state bloc in flutter. Please go to the lib folder to find out what we are going to do next.
- home
Noted, the beginning of the application structure. Mandatory READ - meet1
Fundamental of BloC. Made without flutter_bloc plugin - meet2
Implement Bloc with Flutter_bloc plugin. - meet3
Try Cubit, part of BloC (More simplefy BloC, part of BloC) - meet4
MultiBloc Provider (Declare more BloC class in Main) - meet5
BloC Listener (To listen change of view/code, sometimes used in state) - meet6
BloC Consumer (Merge Listener and builder of BloC with one code/ function) - meet7
Equatable(To comparisons object, used in Testing class) - meet8
Try bloc/cubit test - 1