ublock list management initial

This commit is contained in:
Fabian Freund
2026-04-30 10:44:49 +02:00
parent 28dc4e93f1
commit d2bd36b1ed
43 changed files with 2894 additions and 65 deletions
@@ -83,6 +83,10 @@ part of 'routes.dart';
name: 'AddonCollectionRoute',
path: 'addon_collection',
),
TypedGoRoute<UBlockFilterListsRoute>(
name: 'UBlockFilterListsRoute',
path: 'ublock_filter_lists',
),
TypedGoRoute<TrackingProtectionExceptionsRoute>(
name: 'TrackingProtectionExceptionsRoute',
path: 'tracking_protection_exceptions',
@@ -218,6 +222,13 @@ class AddonCollectionRoute extends GoRouteData with $AddonCollectionRoute {
}
}
class UBlockFilterListsRoute extends GoRouteData with $UBlockFilterListsRoute {
@override
Widget build(BuildContext context, GoRouterState state) {
return const UBlockFilterListsScreen();
}
}
class WebEngineHardeningRoute extends GoRouteData
with $WebEngineHardeningRoute {
@override