From 3e404e5cc1bd9d255574e49b485927e40958baef Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sun, 16 Feb 2020 20:32:29 +0100 Subject: [PATCH] Fix reply text color --- lib/components/reply_content.dart | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/components/reply_content.dart b/lib/components/reply_content.dart index 4956263..8d6e688 100644 --- a/lib/components/reply_content.dart +++ b/lib/components/reply_content.dart @@ -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), ), ], ),