Skip to content

Commit

Permalink
Merge pull request #559 from Npepperlinux/add/several_account_setting…
Browse files Browse the repository at this point in the history
…s_from_settings_page

アカウントリストにseveral_account_settingの設定ボタンを追加
  • Loading branch information
shiosyakeyakini-info authored Jun 22, 2024
2 parents ccb591f + 25da056 commit fb4d8d3
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ class AccountListItem extends ConsumerWidget {
trailing: Row(
mainAxisSize: MainAxisSize.min,
children: [
IconButton(
icon: const Icon(Icons.settings),
onPressed: () {
context.pushRoute(SeveralAccountGeneralSettingsRoute(account: account));
},
),
IconButton(
icon: const Icon(Icons.delete),
onPressed: () {
Expand Down

0 comments on commit fb4d8d3

Please sign in to comment.