From 7b5fac01d07c2d263df5aaf518d2c1099caecc4f Mon Sep 17 00:00:00 2001 From: Sun Date: Mon, 25 Oct 2021 21:33:16 +0800 Subject: [PATCH] fix post edit UI --- lib/apps/file/editor.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/apps/file/editor.dart b/lib/apps/file/editor.dart index 18efbb7..fae4458 100644 --- a/lib/apps/file/editor.dart +++ b/lib/apps/file/editor.dart @@ -160,6 +160,7 @@ class _EditorPageState extends State { onPressed: this._edit ? () => setState(() { this._nameEdit = true; }) : null, ), actions: [ + const SizedBox(width: 10.0), if (this._edit) IconButton(icon: Icon(Icons.save_rounded), onPressed: () => save(lang.saveOk)), if (this._edit)