You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
miguel 92294da2ab docs(bloc-counter): fix a question 1 year ago
..
README.md docs(bloc-counter): fix a question 1 year ago

README.md

Functional

In order to run and hot reload the app either on emulator or device, follow the instructions

Does the app run without any crashes?
Can you increment the counter by tapping the "+" button?
Is the BLoC pattern implemented properly? Can you see the BlocObserver, BlocProvider, and BlocBuilder being used explicitly in the code?
Is the increment operation implemented using the BLoC pattern, with the CounterBloc class managing the state of the counter?
Does the app properly display the current value of the counter, and does it update automatically when the counter's value changes?

Bonus

+Can you decrement the counter by tapping the "-" button?