From 69b413d789056c35804eea2ee93154b5df80db29 Mon Sep 17 00:00:00 2001 From: Anton Stubenbord Date: Mon, 6 Feb 2023 12:40:25 +0100 Subject: [PATCH] Change default theme to classic --- lib/features/settings/bloc/application_settings_state.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/features/settings/bloc/application_settings_state.dart b/lib/features/settings/bloc/application_settings_state.dart index 5771bdd..108a13a 100644 --- a/lib/features/settings/bloc/application_settings_state.dart +++ b/lib/features/settings/bloc/application_settings_state.dart @@ -28,7 +28,7 @@ class ApplicationSettingsState { this.preferredThemeMode = ThemeMode.system, this.isLocalAuthenticationEnabled = false, this.preferredViewType = ViewType.list, - this.preferredColorSchemeOption = ColorSchemeOption.dynamic, + this.preferredColorSchemeOption = ColorSchemeOption.classic, }); Map toJson() => _$ApplicationSettingsStateToJson(this);