From 5a9d4b3d7f7ecf2f0d5865b93d120aaa55c26aaf Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Fri, 3 Jan 2020 12:04:24 +0100 Subject: [PATCH] Fix colors --- lib/components/list_items/chat_list_item.dart | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/components/list_items/chat_list_item.dart b/lib/components/list_items/chat_list_item.dart index fbd47f8..337e7ab 100644 --- a/lib/components/list_items/chat_list_item.dart +++ b/lib/components/list_items/chat_list_item.dart @@ -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(