From efb1bbc2d3eefc49f2f44d9eefcf00ead4c9c762 Mon Sep 17 00:00:00 2001 From: Ankit Mahato Date: Sun, 30 Apr 2023 16:33:57 +0530 Subject: [PATCH] Fix: collection pane scrolling --- lib/screens/home_page/collection_pane.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/screens/home_page/collection_pane.dart b/lib/screens/home_page/collection_pane.dart index 211b7c54..e3d5dedc 100644 --- a/lib/screens/home_page/collection_pane.dart +++ b/lib/screens/home_page/collection_pane.dart @@ -129,6 +129,7 @@ class _RequestListState extends ConsumerState { buildDefaultDragHandles: false, shrinkWrap: true, itemCount: requestItems.length, + physics: const NeverScrollableScrollPhysics(), onReorder: (int oldIndex, int newIndex) { if (oldIndex < newIndex) { newIndex -= 1;