AVAILABLE: 5
Is it possible to make a ListView scrollable only via a ScrollController
and not through touch gestures? Could you elaborate on what you've tried and what hasn't worked?
Solution
There is a property inListView
: physics = NeverScrollableScrollPhysics();
. You can implement this based on certain conditions.As mentioned in the comments, the NeverScrollableScrollPhysics
class achieves this: