disable the scroll on a list in flutter code example
Example 1: disable scroll in listview flutter
ListView.builder(
physics: ClampingScrollPhysics(), // <----
// ...
Example 2: flutter listview disable scroll
physics: const NeverScrollableScrollPhysics()