We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40f9fd7 commit 987d866Copy full SHA for 987d866
1 file changed
lib/components/appbars/root_search_app_bar.dart
@@ -1,4 +1,5 @@
1
import 'package:flutter/material.dart';
2
+import 'package:piwigo_ng/components/dialogs/tags_dialogs.dart';
3
import 'package:piwigo_ng/components/notification_dot.dart';
4
import 'package:piwigo_ng/components/popup_list_item.dart';
5
import 'package:piwigo_ng/services/preferences_service.dart';
@@ -147,6 +148,15 @@ class _RootSearchAppBarState extends State<RootSearchAppBar> {
147
148
],
149
),
150
151
+ PopupMenuItem(
152
+ onTap: () => (
153
+ showChooseTagSheet(context)
154
+ ),
155
+ child: PopupListItem(
156
+ icon: Icons.local_offer_outlined,
157
+ text: appStrings.tags,
158
159
160
if (Preferences.getUserStatus != 'guest')
161
PopupMenuItem(
162
onTap: () => Future.delayed(
0 commit comments