From f6d185aa5a2bd62f63b663a3f423cfcc531e4a39 Mon Sep 17 00:00:00 2001 From: HuyNguyen Date: Mon, 29 May 2023 14:57:43 +0700 Subject: [PATCH] TF-1862: Fix UI when click right after that click left (cherry picked from commit b74d4b597302d646ca63b30ab3466ae8a09f6b88) --- lib/features/thread/presentation/thread_view.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/features/thread/presentation/thread_view.dart b/lib/features/thread/presentation/thread_view.dart index 5e0cd2f52..8e37ff4e2 100644 --- a/lib/features/thread/presentation/thread_view.dart +++ b/lib/features/thread/presentation/thread_view.dart @@ -361,6 +361,7 @@ class ThreadView extends GetWidget return GestureDetector( behavior: HitTestBehavior.translucent, onSecondaryTapDown: (_) {}, + onTapDown: (_) {}, child: Draggable>( data: controller.listEmailDrag, feedback: _buildFeedBackWidget(context), @@ -447,6 +448,7 @@ class ThreadView extends GetWidget return SizedBox( height: 60, child: Material( + clipBehavior: Clip.hardEdge, borderRadius: BorderRadius.circular(10), color: AppColor.colorTextButton, child: Padding(