This helped for me:
ReorderableListView( shrinkWrap: true, physics: const ClampingScrollPhysics(), // add this line buildDefaultDragHandles: false, onReorder: _onReorder, children: [ // Your children widget ], ),