From 4e576c346bc57676530f5c4f762920e68559eb2b Mon Sep 17 00:00:00 2001 From: dab246 Date: Wed, 1 Feb 2023 16:33:21 +0700 Subject: [PATCH] TF-1382 Fix `Apps TAB` should appear as clickable --- .../presentation/mailbox_dashboard_view_web.dart | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/lib/features/mailbox_dashboard/presentation/mailbox_dashboard_view_web.dart b/lib/features/mailbox_dashboard/presentation/mailbox_dashboard_view_web.dart index fee76777b..9b8f1935e 100644 --- a/lib/features/mailbox_dashboard/presentation/mailbox_dashboard_view_web.dart +++ b/lib/features/mailbox_dashboard/presentation/mailbox_dashboard_view_web.dart @@ -292,11 +292,15 @@ class MailboxDashBoardView extends BaseMailboxDashBoardView { behavior: HitTestBehavior.opaque, onTap: () => appGridDashboardController.toggleAppGridDashboard()), child: PortalTarget( - child: InkWell( - onTapDown: (tapDownDetails) => controller.showAppDashboardAction(), - child: buildIconWeb( - icon: SvgPicture.asset(imagePaths.icAppDashboard, width: 28, height: 28, fit: BoxFit.fill), - ) + child: buildIconWeb( + onTap: controller.showAppDashboardAction, + splashRadius: 20, + icon: SvgPicture.asset( + imagePaths.icAppDashboard, + width: 28, + height: 28, + fit: BoxFit.fill + ), ), anchor: const Aligned( follower: Alignment.topRight,