From 8e5613e05741e1804750207e16b15799f8d92384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Thu, 25 Sep 2025 15:27:50 +0200 Subject: [PATCH] chore: Improve chat details icon color design --- lib/pages/chat_details/chat_details_view.dart | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lib/pages/chat_details/chat_details_view.dart b/lib/pages/chat_details/chat_details_view.dart index 1bcb4d564..69c44984d 100644 --- a/lib/pages/chat_details/chat_details_view.dart +++ b/lib/pages/chat_details/chat_details_view.dart @@ -262,9 +262,12 @@ class ChatDetailsView extends StatelessWidget { Divider(color: theme.dividerColor), ListTile( leading: CircleAvatar( - backgroundColor: theme.scaffoldBackgroundColor, + backgroundColor: + theme.colorScheme.surfaceContainer, foregroundColor: iconColor, - child: const Icon(Icons.shield_outlined), + child: const Icon( + Icons.admin_panel_settings_outlined, + ), ), title: Text( L10n.of(context).accessAndVisibility, @@ -282,10 +285,11 @@ class ChatDetailsView extends StatelessWidget { L10n.of(context).whoCanPerformWhichAction, ), leading: CircleAvatar( - backgroundColor: theme.scaffoldBackgroundColor, + backgroundColor: + theme.colorScheme.surfaceContainer, foregroundColor: iconColor, child: const Icon( - Icons.edit_attributes_outlined, + Icons.tune_outlined, ), ), trailing: const Icon(Icons.chevron_right_outlined),