feat: Update text color for persistent room info based on contact type

This commit is contained in:
Janez T
2025-11-14 11:35:30 +01:00
parent 109bf83e58
commit 5106e3939d

View File

@@ -640,8 +640,10 @@ class _SarUpdateSheetState extends State<SarUpdateSheet> {
: AppLocalizations.of(
context,
)!.persistentRoomInfo,
style: const TextStyle(
color: Colors.white70,
style: TextStyle(
color: _selectedContact!.isChannel
? Colors.orange.shade900
: Colors.blue.shade900,
fontSize: 11,
),
),