From 86fa566a215656501b9053803b4c7d0b54304440 Mon Sep 17 00:00:00 2001 From: dab246 Date: Wed, 12 Mar 2025 15:30:58 +0700 Subject: [PATCH] TF-3410 Fix wrong text style Send button in ComposerView Signed-off-by: dab246 --- .../styles/web/bottom_bar_composer_widget_style.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/features/composer/presentation/styles/web/bottom_bar_composer_widget_style.dart b/lib/features/composer/presentation/styles/web/bottom_bar_composer_widget_style.dart index ccc488a4b..ba72132a3 100644 --- a/lib/features/composer/presentation/styles/web/bottom_bar_composer_widget_style.dart +++ b/lib/features/composer/presentation/styles/web/bottom_bar_composer_widget_style.dart @@ -1,4 +1,5 @@ +import 'package:core/presentation/constants/constants_ui.dart'; import 'package:core/presentation/extensions/color_extension.dart'; import 'package:flutter/material.dart'; @@ -25,9 +26,12 @@ class BottomBarComposerWidgetStyle { static const EdgeInsetsGeometry popupItemPadding = EdgeInsetsDirectional.symmetric(horizontal: 12); static const TextStyle sendButtonTextStyle = TextStyle( + fontFamily: ConstantsUI.fontApp, fontWeight: FontWeight.w500, - fontSize: 15, + fontSize: 17, + height: 22 / 17, color: Colors.white, + letterSpacing: -0.41, ); static const TextStyle popupItemTextStyle = TextStyle( color: Colors.black,