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 811fe66 commit 185e935Copy full SHA for 185e935
lib/app/bloc/app_bloc.dart
@@ -104,6 +104,10 @@ class AppBloc extends Bloc<AppEvent, AppState> {
104
// Map language code to Locale
105
final newLocale = Locale(userAppSettings.language);
106
107
+ print('[AppBloc] _onAppSettingsRefreshed: userAppSettings.fontFamily: ${userAppSettings.displaySettings.fontFamily}');
108
+ print('[AppBloc] _onAppSettingsRefreshed: userAppSettings.fontWeight: ${userAppSettings.displaySettings.fontWeight}');
109
+ print('[AppBloc] _onAppSettingsRefreshed: newFontFamily mapped to: $newFontFamily');
110
+
111
emit(
112
state.copyWith(
113
themeMode: newThemeMode,
0 commit comments