TF-3410 Fix wrong text style email subject in EmailView

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-03-12 15:08:19 +07:00
committed by Dat H. Pham
parent 344ac33de2
commit 01f6a6be67
3 changed files with 14 additions and 9 deletions
@@ -166,6 +166,18 @@ class ThemeUtils {
color: color,
);
static TextStyle textStyleHeadingH5({
Color? color,
FontWeight? fontWeight,
}) => TextStyle(
fontFamily: ConstantsUI.fontApp,
fontWeight: fontWeight ?? FontWeight.w500,
letterSpacing: 0.0,
fontSize: 24,
height: 28 / 24,
color: color,
);
static TextStyle textStyleHeadingH4({
Color? color,
FontWeight? fontWeight,