|
|
@ -25,9 +25,16 @@ class ChatListItem extends StatelessWidget {
|
|
|
|
child: Text(
|
|
|
|
child: Text(
|
|
|
|
room.displayname,
|
|
|
|
room.displayname,
|
|
|
|
maxLines: 1,
|
|
|
|
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(
|
|
|
|
subtitle: Row(
|
|
|
|