feat: copy linkBg theme property in message theme.

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2021-10-04 19:43:12 +05:30
committed by xsahil03x
parent b222a99cfb
commit 801a488c42
6 changed files with 28 additions and 7 deletions
@@ -59,6 +59,7 @@ final _messageThemeControl = MessageThemeData(
messageLinksStyle: TextStyle(
color: ColorTheme.light().accentPrimary,
),
linkBackgroundColor: ColorTheme.light().linkBg,
);
final _messageThemeControlDark = MessageThemeData(
@@ -87,4 +88,5 @@ final _messageThemeControlDark = MessageThemeData(
messageLinksStyle: TextStyle(
color: ColorTheme.dark().accentPrimary,
),
linkBackgroundColor: ColorTheme.dark().linkBg,
);