Answers for "listview disable scroll"

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 "listview disable scroll"

Browse Popular Code Answers by Language