diff --git a/lib/editors/common.dart b/lib/editors/common.dart index 1879a86c..b4403904 100644 --- a/lib/editors/common.dart +++ b/lib/editors/common.dart @@ -6,6 +6,7 @@ import 'package:font_awesome_flutter/font_awesome_flutter.dart'; import 'package:gitjournal/core/note.dart'; import 'package:gitjournal/core/notes_folder_fs.dart'; import 'package:gitjournal/error_reporting.dart'; +import 'package:gitjournal/screens/settings_widgets.dart'; import 'package:share/share.dart'; import 'package:image_picker/image_picker.dart'; @@ -229,15 +230,17 @@ Widget _buildBottomMenuSheet( Share.share(note.body); }, ), - ListTile( - leading: const FaIcon(FontAwesomeIcons.tag), - title: Text(tr('editors.common.tags')), - onTap: () { - var note = editorState.getNote(); - Navigator.of(context).pop(); + ProSettingOverlay( + child: ListTile( + leading: const FaIcon(FontAwesomeIcons.tag), + title: Text(tr('editors.common.tags')), + onTap: () { + var note = editorState.getNote(); + Navigator.of(context).pop(); - editor.editTagsSelected(note); - }, + editor.editTagsSelected(note); + }, + ), ), ListTile( leading: const Icon(Icons.edit),