From 8f5fee6bdcdde9abea84d5e865d37f42f18e29ea Mon Sep 17 00:00:00 2001 From: dab246 Date: Tue, 17 Sep 2024 14:43:27 +0700 Subject: [PATCH] Hot fix missing composer button on mobile --- lib/features/thread/presentation/thread_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/features/thread/presentation/thread_view.dart b/lib/features/thread/presentation/thread_view.dart index 08a726e647..a56e8dcafd 100644 --- a/lib/features/thread/presentation/thread_view.dart +++ b/lib/features/thread/presentation/thread_view.dart @@ -308,7 +308,7 @@ class ThreadView extends GetWidget return Obx(() { final isAdvancedSearchViewOpen = controller.searchController.isAdvancedSearchViewOpen.value; - if (controller.searchController.isSearchActive() && !isAdvancedSearchViewOpen) { + if (!controller.searchController.isSearchActive() && !isAdvancedSearchViewOpen) { return Container( padding: PlatformInfo.isMobile && controller.listEmailSelected.isNotEmpty ? EdgeInsets.only(bottom: controller.responsiveUtils.isTabletLarge(context) ? 85 : 70)