Answers for "flutter disable list view scroll"

1

flutter listview disable scroll

physics: const NeverScrollableScrollPhysics()
Posted by: Guest on September-12-2020
3

disable scroll in listview flutter

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

Code answers related to "flutter disable list view scroll"

Browse Popular Code Answers by Language