1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Parse correctly conversation color

This commit is contained in:
2021-03-10 18:04:29 +01:00
parent dacccf57b5
commit a23b76b552
4 changed files with 23 additions and 7 deletions

View File

@ -71,7 +71,7 @@ class ConversationTile extends StatelessWidget {
conversation.sawLastMessage ? Icons.check_circle : Icons.lens,
color: conversation.sawLastMessage
? (darkTheme() ? darkAccentColor : null)
: Colors.blue,
: conversation.color ?? Colors.blue,
),
// Conversation information
@ -79,8 +79,8 @@ class ConversationTile extends StatelessWidget {
subtitle: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
_buildSubInformation(
Icons.access_time, diffTimeFromNowToStr(conversation.lastActivity)),
_buildSubInformation(Icons.access_time,
diffTimeFromNowToStr(conversation.lastActivity)),
_buildSubInformation(
Icons.group,
conversation.members.length == 1