Implementation
static Widget tutorialEntrysList(AppModel app, BuildContext context,
List<TutorialEntryModel> values, TutorialEntryListChanged trigger) {
TutorialEntryInMemoryRepository inMemoryRepository =
TutorialEntryInMemoryRepository(
trigger,
values,
);
return MultiBlocProvider(
providers: [
BlocProvider<TutorialEntryListBloc>(
create: (context) => TutorialEntryListBloc(
tutorialEntryRepository: inMemoryRepository,
)..add(LoadTutorialEntryList()),
)
],
child: TutorialEntryListWidget(app: app, isEmbedded: true),
);
}