From 5c45a8e729cec63ec370eaa743c4f85e111a0537 Mon Sep 17 00:00:00 2001 From: dab246 Date: Tue, 5 Dec 2023 17:45:34 +0700 Subject: [PATCH] Fix recipient tag padding Signed-off-by: dab246 (cherry picked from commit 404f773bfc6843a58d6b598ec312f6d829ce541f) --- .../presentation/widgets/recipient_tag_item_widget.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/features/composer/presentation/widgets/recipient_tag_item_widget.dart b/lib/features/composer/presentation/widgets/recipient_tag_item_widget.dart index e634e4bd3..9af5100cd 100644 --- a/lib/features/composer/presentation/widgets/recipient_tag_item_widget.dart +++ b/lib/features/composer/presentation/widgets/recipient_tag_item_widget.dart @@ -72,6 +72,7 @@ class RecipientTagItemWidget extends StatelessWidget { horizontal: 4, vertical: DirectionUtils.isDirectionRTLByHasAnyRtl(currentEmailAddress.asString()) ? 0 : 2 ), + padding: EdgeInsets.zero, label: Text( currentEmailAddress.asString(), maxLines: 1, @@ -117,6 +118,7 @@ class RecipientTagItemWidget extends StatelessWidget { overflow: CommonTextStyle.defaultTextOverFlow, softWrap: CommonTextStyle.defaultSoftWrap, ), + padding: EdgeInsets.zero, deleteIcon: SvgPicture.asset(_imagePaths.icClose, fit: BoxFit.fill), labelStyle: RecipientTagItemWidgetStyle.labelTextStyle, backgroundColor: _getTagBackgroundColor(),