This commit is contained in:
Forrest 2026-08-04 20:19:10 -04:00
parent d6144c4483
commit 4493bcea5e
47 changed files with 371 additions and 8 deletions

View file

@ -10,6 +10,7 @@ import 'shell/app_shell.dart';
import 'state/providers.dart';
import 'theme/accent.dart';
import 'theme/app_theme.dart';
import 'widgets/splash_screen.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
@ -50,7 +51,9 @@ class TimbreApp extends ConsumerWidget {
title: 'Timbre',
debugShowCheckedModeBanner: false,
theme: buildTimbreTheme(accent),
home: const AppShell(),
// AppShell mounts under the splash and boots behind it; the splash fades
// out after a couple of seconds.
home: const SplashGate(child: AppShell()),
);
}
}