Fix reply text color

This commit is contained in:
Christian Pauly 2020-02-16 20:32:29 +01:00
parent 429e4a1be7
commit 3e404e5cc1
1 changed files with 4 additions and 2 deletions

View File

@ -40,8 +40,10 @@ class ReplyContent extends StatelessWidget {
"",
overflow: TextOverflow.ellipsis,
maxLines: 1,
style:
TextStyle(color: lightText ? Colors.white : Colors.black),
style: TextStyle(
color: lightText
? Colors.white
: Theme.of(context).textTheme.bodyText1.color),
),
],
),