Skip to content

Commit

Permalink
fix: 簡易ノート投稿欄の投稿ボタン等を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
Npepperlinux committed Apr 6, 2024
1 parent 017c89e commit fa92e9f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/view/time_line_page/time_line_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -356,17 +356,19 @@ class TimeLinePageState extends ConsumerState<TimeLinePage> {
// : 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))
],
),
),
Expand Down

0 comments on commit fa92e9f

Please sign in to comment.