Answers for "listview is not scrollable android"

3

make listview not scrollable flutter

ListView(
   physics: NeverScrollableScrollPhysics(), // <-- this will disable scroll
   shrinkWrap: true,
   children: [],
 ),
Posted by: Guest on September-17-2020

Code answers related to "listview is not scrollable android"

Code answers related to "Dart"

Browse Popular Code Answers by Language