added account_settings, linked_devices and edit_linked_device screens and state

This commit is contained in:
2026-01-29 17:45:14 +01:00
parent 12edcd0940
commit 880dd85d2b
30 changed files with 2085 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
import 'package:account/account.dart';
import 'package:auth/auth.dart';
import 'package:legacy_dashboard_shell/legacy_dashboard_builder.dart';
import 'package:dashboard_shell/dashboard_builder.dart';
@@ -42,6 +43,11 @@ void configureAppRouter() {
),
],
),
GoRoute(
path: AppRoutes.accountSettings,
name: 'account_settings',
pageBuilder: AccountSettingsBuilder().buildPage,
),
GoRoute(
path: AppRoutes.login,