From 50ec7fc11cc361f4061ffb4a77f869fda92c623d Mon Sep 17 00:00:00 2001 From: Sophie Tauchert <999eagle@999eagle.moe> Date: Wed, 14 Aug 2019 15:22:23 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Fix=20Unicode=20rendering=20in?= =?UTF-8?q?=20post=20header?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../user_post_header/widgets/post_creator_identifier.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/widgets/post/widgets/post_header/widgets/user_post_header/widgets/post_creator_identifier.dart b/lib/widgets/post/widgets/post_header/widgets/user_post_header/widgets/post_creator_identifier.dart index 713daa6bc..d2e693130 100644 --- a/lib/widgets/post/widgets/post_header/widgets/user_post_header/widgets/post_creator_identifier.dart +++ b/lib/widgets/post/widgets/post_header/widgets/user_post_header/widgets/post_creator_identifier.dart @@ -44,15 +44,15 @@ class OBPostCreatorIdentifier extends StatelessWidget { child: RichText( overflow: TextOverflow.ellipsis, text: TextSpan( - style: TextStyle( - color: secondaryTextColor, fontSize: 14), + style: themeService.getTextStyle(TextStyle( + color: secondaryTextColor, fontSize: 14)), children: [ TextSpan( text: '$commenterName', - style: TextStyle(fontWeight: FontWeight.bold)), + style: themeService.getTextStyle(TextStyle(fontWeight: FontWeight.bold))), TextSpan( text: ' @$commenterUsername', - style: TextStyle(fontSize: 12)), + style: themeService.getTextStyle(TextStyle(fontSize: 12))), ]), ), ),