From 610a8033c96ffb478563290211c9c583ba118160 Mon Sep 17 00:00:00 2001 From: Dat PHAM HOANG Date: Fri, 6 Jun 2025 17:44:02 +0700 Subject: [PATCH] TF-3761 Update icon size for mailbox search bar --- .../search/mailbox/presentation/search_mailbox_view.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/features/search/mailbox/presentation/search_mailbox_view.dart b/lib/features/search/mailbox/presentation/search_mailbox_view.dart index 73acee47e..f7624a3ff 100644 --- a/lib/features/search/mailbox/presentation/search_mailbox_view.dart +++ b/lib/features/search/mailbox/presentation/search_mailbox_view.dart @@ -107,7 +107,7 @@ class SearchMailboxView extends GetWidget child: TMailButtonWidget.fromIcon( icon: controller.imagePaths.icSearchBar, iconColor: AppColor.steelGray400, - iconSize: 28, + iconSize: 20, backgroundColor: Colors.transparent, padding: const EdgeInsets.all(4), tooltipMessage: AppLocalizations.of(context).search, @@ -123,7 +123,7 @@ class SearchMailboxView extends GetWidget child: TMailButtonWidget.fromIcon( icon: controller.imagePaths.icClearSearchInput, iconColor: AppColor.steelGray400, - iconSize: 28, + iconSize: 20, padding: const EdgeInsets.all(4), tooltipMessage: AppLocalizations.of(context).clearAll, onTapActionCallback: controller.clearAllTextInputSearchForm,