refactor(bootstrapper): UI redesign

This commit is contained in:
hdbg
2025-12-20 17:37:05 +01:00
parent d7ec54d8ca
commit 22b06b800a
4 changed files with 441 additions and 68 deletions

View File

@@ -52,9 +52,15 @@ void main() async {
completer.future.then((_) {
talker.info("Bootstrapper completed, launching app");
});
var ourTheme = commonTheme.copyWith(
scaffoldBackgroundColor: Colors.white,
colorScheme: ColorScheme.dark(surface: Colors.blueGrey),
);
runApp(
MaterialApp(
theme: ThemeData.dark(useMaterial3: true),
theme: ourTheme,
home: ProviderScope(
child: Bootstrapper(
stages: [SimpleStage(), SimpleStage2()],