Published
- 1 min read
flutter tabbarview disable scroll
The solution for this is noted below
flutter tabbarview disable scroll
Solution
TabBarView(
physics: NeverScrollableScrollPhysics(),
controller: tabcontroler,
children: <Widget>[
Container(color: Colors.red),
Container(color: Colors.green),
Container(color: Colors.blue),
],
),
Try other methods by searching on the site. That is if this doesn’t work