Skip to content

Commit

Permalink
leadingのアイコンを変更
Browse files Browse the repository at this point in the history
  • Loading branch information
cmt1910 committed Jan 11, 2024
1 parent 54d8d3f commit 6c6c2ed
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,23 @@ class SeveralAccountSettingsPage extends StatelessWidget {
context.pushRoute(WordMuteRoute(account: account, muteType: MuteType.soft));
},
title: const Text("ワードミュート"),
leading: const Icon(Icons.volume_off),
leading: const Icon(Icons.comments_disabled),
trailing: const Icon(Icons.chevron_right),
),
ListTile(
onTap: () {
context.pushRoute(WordMuteRoute(account: account, muteType: MuteType.hard));
},
title: const Text("ハードワードミュート"),
leading: const Icon(Icons.volume_off),
leading: const Icon(Icons.comments_disabled),
trailing: const Icon(Icons.chevron_right),
),
ListTile(
onTap: () {
context.pushRoute(InstanceMuteRoute(account: account));
},
title: const Text("インスタンスミュート"),
leading: const Icon(Icons.volume_off),
leading: const Icon(Icons.visibility_off),
trailing: const Icon(Icons.chevron_right),
),
ListTile(
Expand Down

0 comments on commit 6c6c2ed

Please sign in to comment.