add container menu option

This commit is contained in:
Fabian Freund
2025-11-21 05:24:02 +01:00
parent 3f84dfe953
commit 8f612f5181
@@ -431,6 +431,13 @@ class BrowserBottomAppBar extends HookConsumerWidget {
leadingIcon: const Icon(MdiIcons.exclamationThick), leadingIcon: const Icon(MdiIcons.exclamationThick),
child: const Text('Bangs'), child: const Text('Bangs'),
), ),
MenuItemButton(
onPressed: () async {
await ContainerListRoute().push(context);
},
leadingIcon: const Icon(MdiIcons.folder),
child: const Text('Containers'),
),
MenuItemButton( MenuItemButton(
onPressed: () async { onPressed: () async {
await context.push(FeedListRoute().location); await context.push(FeedListRoute().location);