possibility to inject child tabs

This commit is contained in:
Fabian Freund
2025-06-24 14:47:52 +02:00
parent c6ab61e86d
commit 6dd75411a6
17 changed files with 210 additions and 59 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ class WebPageRoute extends GoRouteData with _$WebPageRoute {
}
}
enum TabType { regular, private }
enum TabType { regular, private, child }
class SearchRoute extends GoRouteData with _$SearchRoute {
static const String emptySearchText = ' ';
+1
View File
@@ -388,6 +388,7 @@ mixin _$SearchRoute on GoRouteData {
const _$TabTypeEnumMap = {
TabType.regular: 'regular',
TabType.private: 'private',
TabType.child: 'child',
};
mixin _$TorProxyRoute on GoRouteData {