diff --git a/lib/screens/home_page/collection_pane.dart b/lib/screens/home_page/collection_pane.dart index e3d5dedc..0a2260c9 100644 --- a/lib/screens/home_page/collection_pane.dart +++ b/lib/screens/home_page/collection_pane.dart @@ -97,9 +97,7 @@ class _CollectionPaneState extends ConsumerState { ), kVSpacer8, const Expanded( - child: SingleChildScrollView( - child: RequestList(), - ), + child: RequestList(), ), ], ), @@ -127,9 +125,7 @@ class _RequestListState extends ConsumerState { final requestItems = ref.watch(collectionStateNotifierProvider)!; return ReorderableListView.builder( buildDefaultDragHandles: false, - shrinkWrap: true, itemCount: requestItems.length, - physics: const NeverScrollableScrollPhysics(), onReorder: (int oldIndex, int newIndex) { if (oldIndex < newIndex) { newIndex -= 1;