From 8f612f5181bca7a32c80225579326762df4e1af9 Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Fri, 21 Nov 2025 05:24:02 +0100 Subject: [PATCH] add container menu option --- .../widgets/browser_modules/bottom_app_bar.dart | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart b/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart index 91de4a7e..8cce66a9 100644 --- a/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart +++ b/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart @@ -431,6 +431,13 @@ class BrowserBottomAppBar extends HookConsumerWidget { leadingIcon: const Icon(MdiIcons.exclamationThick), child: const Text('Bangs'), ), + MenuItemButton( + onPressed: () async { + await ContainerListRoute().push(context); + }, + leadingIcon: const Icon(MdiIcons.folder), + child: const Text('Containers'), + ), MenuItemButton( onPressed: () async { await context.push(FeedListRoute().location);