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(),