Editable post

This commit is contained in:
2024-11-10 18:37:34 +08:00
parent 60a34fed00
commit 3ffe3cb50f
18 changed files with 249 additions and 93 deletions

View File

@ -121,7 +121,7 @@ class _PublisherNewPersonalState extends State<_PublisherNewPersonal> {
width: double.infinity,
child: ElevatedButton.icon(
onPressed: _isBusy ? null : _performAction,
icon: const Icon(Icons.add),
icon: const Icon(Symbols.add),
label: Text('create').tr(),
),
).padding(horizontal: 2),

View File

@ -96,7 +96,7 @@ class _PublisherScreenState extends State<PublisherScreen> {
PopupMenuItem(
child: Row(
children: [
const Icon(Icons.edit),
const Icon(Symbols.edit),
const Gap(16),
Text('edit').tr(),
],