TF-1382 Fix Apps TAB should appear as clickable

This commit is contained in:
dab246
2023-02-01 16:33:21 +07:00
committed by Dat H. Pham
parent 80aab37cb1
commit 4e576c346b
@@ -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,