bump deps, remove hack for fallback theme that is no longer needed

This commit is contained in:
Henry Hiles 2026-08-08 19:04:41 -04:00
commit 07f8a35b74
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
3 changed files with 101 additions and 96 deletions

View file

@ -112,7 +112,7 @@ class App extends StatelessWidget {
data: (settings) =>
settings.useDynamicTheming ? lightDynamic : null,
) ??
ColorScheme.fromSeed(seedColor: Colors.indigo))
ThemeData.light().colorScheme)
.theme,
darkTheme:
(ref
@ -122,10 +122,7 @@ class App extends StatelessWidget {
data: (settings) =>
settings.useDynamicTheming ? darkDynamic : null,
) ??
ColorScheme.fromSeed(
seedColor: Colors.indigo,
brightness: Brightness.dark,
))
ThemeData.dark().colorScheme)
.theme,
themeMode: ref
.watch(SettingsController.provider)