From 22953b83df0ce9121c461ceded34555d41ab81e5 Mon Sep 17 00:00:00 2001 From: dab246 Date: Tue, 24 May 2022 17:19:15 +0700 Subject: [PATCH] TF-587 Remove search bar in setting screen --- .../manage_account_dashboard_view.dart | 16 ++-------------- .../presentation/profiles/profiles_view.dart | 2 +- 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/lib/features/manage_account/presentation/manage_account_dashboard_view.dart b/lib/features/manage_account/presentation/manage_account_dashboard_view.dart index dde38cf08..cf9d247b7 100644 --- a/lib/features/manage_account/presentation/manage_account_dashboard_view.dart +++ b/lib/features/manage_account/presentation/manage_account_dashboard_view.dart @@ -82,16 +82,9 @@ class ManageAccountDashBoardView extends GetWidget {})) - .build(), Expanded(child: Padding( padding: !BuildUtils.isWeb && _responsiveUtils.isPortraitMobile(context) ? const EdgeInsets.only(left: 8) @@ -107,11 +100,6 @@ class ManageAccountDashBoardView extends GetWidget {})) - .build(), const SizedBox(width: 16), Obx(() => (AvatarBuilder() ..text(controller.userProfile.value?.getAvatarText() ?? '') diff --git a/lib/features/manage_account/presentation/profiles/profiles_view.dart b/lib/features/manage_account/presentation/profiles/profiles_view.dart index 72f8db481..8f053940d 100644 --- a/lib/features/manage_account/presentation/profiles/profiles_view.dart +++ b/lib/features/manage_account/presentation/profiles/profiles_view.dart @@ -24,7 +24,7 @@ class ProfilesView extends GetWidget { borderRadius: _responsiveUtils.isDesktop(context) ? BorderRadius.circular(20) : null, border: _responsiveUtils.isDesktop(context) ? Border.all(color: AppColor.colorBorderBodyThread, width: 1) : null, color: Colors.white), - padding: const EdgeInsets.all(10), + padding: const EdgeInsets.only(left: 10, right: 10, bottom: 10), child: DefaultTabController( initialIndex: 0, length: 1,