From fa92e9fa90a52a859cb423e5d66a2b1eb883b1e1 Mon Sep 17 00:00:00 2001 From: Npepperlinux Date: Sat, 6 Apr 2024 00:40:14 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=B0=A1=E6=98=93=E3=83=8E=E3=83=BC?= =?UTF-8?q?=E3=83=88=E6=8A=95=E7=A8=BF=E6=AC=84=E3=81=AE=E6=8A=95=E7=A8=BF?= =?UTF-8?q?=E3=83=9C=E3=82=BF=E3=83=B3=E7=AD=89=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/view/time_line_page/time_line_page.dart | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/view/time_line_page/time_line_page.dart b/lib/view/time_line_page/time_line_page.dart index 6948f14e8..293c5435f 100644 --- a/lib/view/time_line_page/time_line_page.dart +++ b/lib/view/time_line_page/time_line_page.dart @@ -356,17 +356,19 @@ class TimeLinePageState extends ConsumerState { // : null, child: Row( children: [ + const Padding(padding: EdgeInsets.only(right: 5)), const Expanded( child: TimelineNoteField(), ), IconButton( onPressed: note.expectFailure(context), - icon: const Icon(Icons.edit), + icon: const Icon(Icons.send), ), IconButton( onPressed: noteCreateRoute, - icon: const Icon(Icons.keyboard_arrow_right), - ) + icon: const Icon(Icons.edit_note), + ), + const Padding(padding: EdgeInsets.only(right: 5)) ], ), ),