Fix colors

This commit is contained in:
Christian Pauly 2020-01-03 12:04:24 +01:00
parent 3a64d58d23
commit 5a9d4b3d7f
1 changed files with 8 additions and 1 deletions

View File

@ -25,9 +25,16 @@ class ChatListItem extends StatelessWidget {
child: Text(
room.displayname,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
SizedBox(width: 16),
Text(
ChatTime(room.timeCreated).toEventTimeString(),
style: TextStyle(
color: Color(0xFF555555),
),
),
Text(ChatTime(room.timeCreated).toEventTimeString()),
],
),
subtitle: Row(