chore: Highlight unread chats at timestamp

This commit is contained in:
Christian Kußowski 2026-03-31 07:24:57 +02:00
commit afaf61bbeb
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -219,7 +219,15 @@ class ChatListItem extends StatelessWidget {
room.latestEventReceivedTime.localizedTimeShort(
context,
),
style: TextStyle(fontSize: 11),
style: TextStyle(
fontSize: 11,
fontWeight: room.hasNewMessages
? FontWeight.bold
: null,
color: hasNotifications
? theme.colorScheme.primary
: null,
),
),
),
],