From 5106e3939db1dfe38ab1e5d8b803c75f27d11dcf Mon Sep 17 00:00:00 2001 From: Janez T Date: Fri, 14 Nov 2025 11:35:30 +0100 Subject: [PATCH] feat: Update text color for persistent room info based on contact type --- lib/widgets/messages/sar_update_sheet.dart | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/widgets/messages/sar_update_sheet.dart b/lib/widgets/messages/sar_update_sheet.dart index 22c9dad..77dd25b 100644 --- a/lib/widgets/messages/sar_update_sheet.dart +++ b/lib/widgets/messages/sar_update_sheet.dart @@ -640,8 +640,10 @@ class _SarUpdateSheetState extends State { : AppLocalizations.of( context, )!.persistentRoomInfo, - style: const TextStyle( - color: Colors.white70, + style: TextStyle( + color: _selectedContact!.isChannel + ? Colors.orange.shade900 + : Colors.blue.shade900, fontSize: 11, ), ),