chore: Improve chat details icon color design
This commit is contained in:
parent
25057408ed
commit
8e5613e057
1 changed files with 8 additions and 4 deletions
|
|
@ -262,9 +262,12 @@ class ChatDetailsView extends StatelessWidget {
|
||||||
Divider(color: theme.dividerColor),
|
Divider(color: theme.dividerColor),
|
||||||
ListTile(
|
ListTile(
|
||||||
leading: CircleAvatar(
|
leading: CircleAvatar(
|
||||||
backgroundColor: theme.scaffoldBackgroundColor,
|
backgroundColor:
|
||||||
|
theme.colorScheme.surfaceContainer,
|
||||||
foregroundColor: iconColor,
|
foregroundColor: iconColor,
|
||||||
child: const Icon(Icons.shield_outlined),
|
child: const Icon(
|
||||||
|
Icons.admin_panel_settings_outlined,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
title: Text(
|
title: Text(
|
||||||
L10n.of(context).accessAndVisibility,
|
L10n.of(context).accessAndVisibility,
|
||||||
|
|
@ -282,10 +285,11 @@ class ChatDetailsView extends StatelessWidget {
|
||||||
L10n.of(context).whoCanPerformWhichAction,
|
L10n.of(context).whoCanPerformWhichAction,
|
||||||
),
|
),
|
||||||
leading: CircleAvatar(
|
leading: CircleAvatar(
|
||||||
backgroundColor: theme.scaffoldBackgroundColor,
|
backgroundColor:
|
||||||
|
theme.colorScheme.surfaceContainer,
|
||||||
foregroundColor: iconColor,
|
foregroundColor: iconColor,
|
||||||
child: const Icon(
|
child: const Icon(
|
||||||
Icons.edit_attributes_outlined,
|
Icons.tune_outlined,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
trailing: const Icon(Icons.chevron_right_outlined),
|
trailing: const Icon(Icons.chevron_right_outlined),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue