Answers for "disable scroll in gridview flutter"

2

disable scroll in listview flutter

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

flutter tabbarview disable scroll

TabBarView(
        physics: NeverScrollableScrollPhysics(),
        controller: tabcontroler,
        children: <Widget>[
          Container(color: Colors.red),
          Container(color: Colors.green),
          Container(color: Colors.blue),
        ],
      ),
Posted by: Guest on December-26-2020
0

disable scroll gridview flutter

Add this line inside your GridView to disable scrolling

 physics: NeverScrollableScrollPhysics(),
Posted by: Guest on June-10-2021

Code answers related to "disable scroll in gridview flutter"

Browse Popular Code Answers by Language