Answers for "stop scrolling list view on flutter"

0

flutter listview disable scroll

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

disable scroll in listview flutter

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

Code answers related to "stop scrolling list view on flutter"

Browse Popular Code Answers by Language