1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 12:59:21 +00:00

Fix date appearance

This commit is contained in:
Pierre HUBERT 2021-03-11 00:15:04 +01:00
parent 52d217a89c
commit 75a80b1018

View File

@ -83,7 +83,9 @@ class ConversationMessageTile extends StatelessWidget {
margin: EdgeInsets.only(top: 5.0),
child: Text(
dateTimeToString(message.date),
style: TextStyle(color: Colors.black54, fontSize: 12.0),
style: TextStyle(
color: darkTheme() ? Colors.white : Colors.black54,
fontSize: 12.0),
textAlign: TextAlign.center,
),
)