add isolated tab feature

This commit is contained in:
Fabian Freund
2026-02-27 08:29:50 +01:00
parent 3ef567cc19
commit d24675094d
84 changed files with 3783 additions and 513 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ class BrowserRoute extends GoRouteData with $BrowserRoute {
}
}
enum TabType { regular, private, child }
enum TabType { regular, private, child, isolated }
class SearchRoute extends GoRouteData with $SearchRoute {
static const String emptySearchText = ' ';
+1
View File
@@ -664,6 +664,7 @@ const _$TabTypeEnumMap = {
TabType.regular: 'regular',
TabType.private: 'private',
TabType.child: 'child',
TabType.isolated: 'isolated',
};
mixin $TabViewRoute on GoRouteData {