Better tags input

This commit is contained in:
2024-07-31 02:00:03 +08:00
parent a16ff1b9a1
commit b70d3795d1
13 changed files with 289 additions and 111 deletions

View File

@ -382,6 +382,13 @@ class _PostPublishScreenState extends State<PostPublishScreen> {
_editorController.editAttachment(context);
},
),
IconButton(
icon: const Icon(Icons.tag),
color: Theme.of(context).colorScheme.primary,
onPressed: () {
_editorController.editCategoriesAndTags(context);
},
),
],
).paddingSymmetric(horizontal: 6, vertical: 8),
),