TF-3410 Fix wrong text style title in ComposerView

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-03-12 15:09:58 +07:00
committed by Dat H. Pham
parent 01f6a6be67
commit d6914a684b
@@ -1,10 +1,9 @@
import 'package:core/presentation/utils/theme_utils.dart';
import 'package:flutter/material.dart';
class TitleComposerWidgetStyle {
static const TextStyle textStyle = TextStyle(
fontSize: 17,
fontWeight: FontWeight.w600,
static final TextStyle textStyle = ThemeUtils.textStyleHeadingHeadingSmall(
color: Colors.black
);
}