fix: theme follows system

This commit is contained in:
alzalia1 2025-08-18 23:06:25 +02:00
parent 449505c4b8
commit 9e3730fd83

View file

@ -27,7 +27,9 @@ class MyApp extends StatelessWidget {
], ],
supportedLocales: [const Locale("fr")], supportedLocales: [const Locale("fr")],
routerConfig: router(context.read()), routerConfig: router(context.read()),
theme: ThemeData.dark(), theme: ThemeData.light(),
darkTheme: ThemeData.dark(),
themeMode: ThemeMode.system,
); );
} }
} }