From 9a2efaae1cac6f867818128b8aef0aa4f04fd788 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Wed, 13 May 2020 18:33:07 +0200 Subject: [PATCH] Can open groups page --- lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart b/lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart index 24c6973..113a6d1 100644 --- a/lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart +++ b/lib/ui/widgets/tablet_mode/tablet_appbar_widget.dart @@ -86,6 +86,12 @@ class _ComunicTabletAppBarWidgetState PopupMenuButton<_MenuItemCallback>( offset: Offset(0, 50), itemBuilder: (c) => [ + // Get groups + _MainMenuItem( + label: tr("Groups"), + icon: Icons.group, + onTap: () => MainController.of(context).openGroupsListPage()), + // Toggle dark theme _MainMenuItem( label: tr("Night mode"),