feat: add an invisible startup screen

This commit is contained in:
2026-05-07 19:48:35 +02:00
parent 5f017ac05d
commit 7186081388
2 changed files with 72 additions and 0 deletions
+4
View File
@@ -30,6 +30,10 @@ final routerProvider = Provider<GoRouter>((ref) {
return null;
},
routes: [
GoRoute(
path: '/',
builder: (context, state) => const StartupScreen(),
),
GoRoute(
path: '/connect',
builder: (context, state) => const ServerDiscoveryScreen(),