Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Commit

Permalink
💄 Fix Unicode rendering in post header
Browse files Browse the repository at this point in the history
  • Loading branch information
999eagle committed Aug 16, 2019
1 parent b0f8bd7 commit 50ec7fc
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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))),
]),
),
),
Expand Down

0 comments on commit 50ec7fc

Please sign in to comment.