Answers for "disable scrolling in list view flutter"

2

disable scrollview flutter

physics = NeverScrollableScrollPhysics()
Posted by: Guest on May-14-2020
2

disable scroll in listview flutter

ListView.builder(
physics: ClampingScrollPhysics(), // <----
// ...
Posted by: Guest on October-22-2020

Code answers related to "disable scrolling in list view flutter"

Browse Popular Code Answers by Language