Is it possible to let a ListView only be scrollable with the ScrollController and not with the touchscreen?
Worked for me
ListView.builder( scrollDirection: Axis.vertical, shrinkWrap: true, physics: const ClampingScrollPhysics(), ...