I have a scrollable widget, say a ListView, which contains some special widget.
How can I prevent the scrollable to scroll when the user tries to scroll by starting
Wrap the widget with GestureDetector and implement empty gesture functions in it.
GestureDetector
GestureDetector( onVerticalDragUpdate: (_) {}, child: YourWidget ),