Add Supa account and search changes

This commit is contained in:
Fabian Freund
2026-05-22 18:10:22 +02:00
parent 3a19865b2e
commit 51289f1266
374 changed files with 54061 additions and 5013 deletions
@@ -96,6 +96,10 @@ part of 'routes.dart';
path: 'custom_tracking_protection',
),
TypedGoRoute<ErrorLogsRoute>(name: 'ErrorLogsRoute', path: 'error_logs'),
TypedGoRoute<AccountSettingsRoute>(
name: 'AccountSettingsRoute',
path: 'account',
),
TypedGoRoute<SyncSettingsRoute>(name: 'SyncSettingsRoute', path: 'sync'),
TypedGoRoute<UrlCleanerSettingsRoute>(
name: 'UrlCleanerSettingsRoute',
@@ -272,6 +276,13 @@ class CustomTrackingProtectionRoute extends GoRouteData
}
}
class AccountSettingsRoute extends GoRouteData with $AccountSettingsRoute {
@override
Widget build(BuildContext context, GoRouterState state) {
return const AccountSettingsScreen();
}
}
class SyncSettingsRoute extends GoRouteData with $SyncSettingsRoute {
@override
Widget build(BuildContext context, GoRouterState state) {