We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1de5469 commit f8870b8Copy full SHA for f8870b8
lib/app/view/app.dart
@@ -112,9 +112,11 @@ class App extends StatelessWidget {
112
),
113
BlocProvider(
114
create: (context) => DashboardBloc(
115
- dashboardSummaryRepository: context
116
- .read<DataRepository<DashboardSummary>>(),
+ dashboardSummaryRepository:
+ context.read<DataRepository<DashboardSummary>>(),
117
headlinesRepository: context.read<DataRepository<Headline>>(),
118
+ topicsRepository: context.read<DataRepository<Topic>>(),
119
+ sourcesRepository: context.read<DataRepository<Source>>(),
120
121
122
],
0 commit comments