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 1393b60 commit 95045b2Copy full SHA for 95045b2
lib/app/view/app.dart
@@ -70,9 +70,10 @@ class App extends StatelessWidget {
70
create:
71
(context) => AppBloc(
72
authenticationRepository: context.read<HtAuthRepository>(),
73
- // Pass generic data repositories for preferences
74
userAppSettingsRepository:
75
context.read<HtDataRepository<UserAppSettings>>(),
+ appConfigRepository: // Added
76
+ context.read<HtDataRepository<AppConfig>>(), // Added
77
),
78
79
BlocProvider(
0 commit comments