mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-19 10:39:26 +01:00
Fix reply text color
This commit is contained in:
parent
429e4a1be7
commit
3e404e5cc1
@ -40,8 +40,10 @@ class ReplyContent extends StatelessWidget {
|
|||||||
"",
|
"",
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
style:
|
style: TextStyle(
|
||||||
TextStyle(color: lightText ? Colors.white : Colors.black),
|
color: lightText
|
||||||
|
? Colors.white
|
||||||
|
: Theme.of(context).textTheme.bodyText1.color),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user