From 7edd21ab014438e23721530e85f146d10741155e Mon Sep 17 00:00:00 2001 From: "Dr.Blank" <64108942+Dr-Blank@users.noreply.github.com> Date: Sat, 19 Apr 2025 15:37:28 +0530 Subject: [PATCH] fix: change library switcher activation from long press to double tap --- lib/router/scaffold_with_nav_bar.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/router/scaffold_with_nav_bar.dart b/lib/router/scaffold_with_nav_bar.dart index 979dc91..9cbbd71 100644 --- a/lib/router/scaffold_with_nav_bar.dart +++ b/lib/router/scaffold_with_nav_bar.dart @@ -124,7 +124,7 @@ class ScaffoldWithNavBar extends HookConsumerWidget { if (item.name == 'Library') { return GestureDetector( onSecondaryTap: () => showLibrarySwitcher(context, ref), - onLongPress: () => showLibrarySwitcher(context, ref), + onDoubleTap: () => showLibrarySwitcher(context, ref), child: destinationWidget, // Wrap the actual NavigationDestination );