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(