feat(useragent): added connection info setup screen

This commit is contained in:
hdbg
2026-03-15 14:51:39 +01:00
parent 16d5b9a233
commit ec0e8a980c
25 changed files with 800 additions and 2441 deletions

View File

@@ -14,13 +14,13 @@ class Bootstrap extends HookConsumerWidget {
@override
Widget build(BuildContext context, WidgetRef ref) {
final container = ProviderScope.containerOf( context);
final container = ProviderScope.containerOf(context);
final completer = useMemoized(() {
final completer = Completer<void>();
completer.future.then((_) async {
if (context.mounted) {
final router = AutoRouter.of(context);
router.replace(const DashboardRouter());
router.replace(const ServerInfoSetupRoute());
}
});