Answers for "flutter tabbar scrollview disable"

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

Code answers related to "Swift"

Browse Popular Code Answers by Language