From d6914a684baa02d52c7a9435a4b102c29dd5a2e3 Mon Sep 17 00:00:00 2001 From: dab246 Date: Wed, 12 Mar 2025 15:09:58 +0700 Subject: [PATCH] TF-3410 Fix wrong text style title in ComposerView Signed-off-by: dab246 --- .../presentation/styles/title_composer_widget_style.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/features/composer/presentation/styles/title_composer_widget_style.dart b/lib/features/composer/presentation/styles/title_composer_widget_style.dart index 9dc8c1841..a4579bfa2 100644 --- a/lib/features/composer/presentation/styles/title_composer_widget_style.dart +++ b/lib/features/composer/presentation/styles/title_composer_widget_style.dart @@ -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 ); } \ No newline at end of file