Skip to content

Commit

Permalink
TW-938: Fix style of reply message same the style of normal message
Browse files Browse the repository at this point in the history
  • Loading branch information
nqhhdev committed Nov 15, 2023
1 parent 892fe46 commit 76e7184
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions lib/pages/chat/events/message_content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,9 @@ class MessageContent extends StatelessWidget {
child: HtmlMessage(
event: event,
html: html,
defaultTextStyle:
Theme.of(context).textTheme.bodyLarge?.copyWith(
// color: textColor,
fontSize: bigEmotes ? fontSize * 3 : fontSize,
),
defaultTextStyle: Theme.of(context).textTheme.bodyLarge,
linkStyle: TextStyle(
color: Theme.of(context).colorScheme.secondary,
fontSize: bigEmotes ? fontSize * 3 : fontSize,
decoration: TextDecoration.underline,
decorationColor: textColor.withAlpha(150),
),
Expand Down

0 comments on commit 76e7184

Please sign in to comment.