From e1357b1a79dd05a998d37fa94e6d451e1f8d9d82 Mon Sep 17 00:00:00 2001 From: dab246 Date: Fri, 13 Sep 2024 16:07:25 +0700 Subject: [PATCH] TF-3002 [WEB] Add left padding for `All mailbox` in destination picker view --- .../presentation/destination_picker_view.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/features/destination_picker/presentation/destination_picker_view.dart b/lib/features/destination_picker/presentation/destination_picker_view.dart index 57cce4078..0efaff874 100644 --- a/lib/features/destination_picker/presentation/destination_picker_view.dart +++ b/lib/features/destination_picker/presentation/destination_picker_view.dart @@ -476,7 +476,7 @@ class DestinationPickerView extends GetWidget MailboxId? mailboxIdSelected ) { return Padding( - padding: const EdgeInsets.symmetric(horizontal: 16), + padding: const EdgeInsets.symmetric(horizontal: 24), child: Material( color: Colors.transparent, child: InkWell( @@ -494,8 +494,8 @@ class DestinationPickerView extends GetWidget child: Row(children: [ SvgPicture.asset( controller.imagePaths.icFolderMailbox, - width: PlatformInfo.isWeb ? 20 : 24, - height: PlatformInfo.isWeb ? 20 : 24, + width: PlatformInfo.isWeb ? 24 : 20, + height: PlatformInfo.isWeb ? 24 : 20, fit: BoxFit.fill ), const SizedBox(width: 8),