chore: temporarily force light mode

Dark mode doesn't render some icons correctly at the moment and in an effort to get an update Quickgui release out light mode the temporarily the only theme.
This commit is contained in:
Martin Wimpress 2024-06-26 17:45:06 +01:00
parent a8ada5a40a
commit da03323f20
No known key found for this signature in database
GPG Key ID: 61DF940515E06DA3
2 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,8 @@ class AppSettings extends ChangeNotifier {
}
set useDarkModeSilently(bool useDarkMode) {
_themeMode = useDarkMode ? ThemeMode.dark : ThemeMode.light;
//_themeMode = useDarkMode ? ThemeMode.dark : ThemeMode.light;
_themeMode = ThemeMode.light;
}
set useDarkMode(bool useDarkMode) {

View File

@ -48,6 +48,7 @@ class _LeftMenuState extends State<LeftMenu> with PreferencesMixin {
title: Text("quickgui $_version",
style: Theme.of(context).textTheme.titleLarge),
),
/*
const Divider(),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
@ -71,6 +72,7 @@ class _LeftMenuState extends State<LeftMenu> with PreferencesMixin {
],
),
),
*/
const Divider(),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),