skip to Main Content

Flutter – Missing Statechange in BlocListener (Cubit, initial Load)

I'm refactoring some of my blocs down to cubits and I'm struggling with an unexpected behavior. Widget @override Widget build(BuildContext context) { return BlocProvider( create: (context) => injector.get<DocumentListCubit>()..load(), child: BlocConsumer<DocumentListCubit, DocumentListState2>( listener: (context, state) { context.read<GlobalBusyIndicatorCubit>().busy = state.phase == DocumentListState2Enum.loading;…

VIEW QUESTION

Flutter bloc – How can I use BlocBuilder?

I'm a Flutter Beginer and about to use Bloc. but this error message comes up and I tried to use 'extends StateStreamable<CalculatorEvent>' or 'implements' but it doesn't work. please help me to solve this error. Thank you. 'CalculatorBloc' doesn't conform…

VIEW QUESTION
Back To Top
Search