TF-3410 Fix wrong text style avatar icon

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-03-12 14:41:11 +07:00
committed by Dat H. Pham
parent c4622a73a4
commit a31aec8c74
3 changed files with 15 additions and 5 deletions
@@ -162,6 +162,18 @@ class ThemeUtils {
color: color,
);
static TextStyle textStyleHeadingH4({
Color? color,
FontWeight? fontWeight,
}) => TextStyle(
fontFamily: ConstantsUI.fontApp,
fontWeight: fontWeight ?? FontWeight.w500,
letterSpacing: 0.0,
fontSize: 32,
height: 40 / 32,
color: color,
);
static TextStyle textStyleHeadingHeadingSmall({
Color? color,
FontWeight? fontWeight,