Fix colors
This commit is contained in:
parent
3a64d58d23
commit
5a9d4b3d7f
|
@ -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(
|
||||||
|
|
Loading…
Reference in a new issue