xTabBarView method
- {TabController controller,
- DragStartBehavior dragStartBehavior = DragStartBehavior.start,
- Key key,
- ScrollPhysics physics}
Implementation
Widget xTabBarView(
{TabController controller,
DragStartBehavior dragStartBehavior = DragStartBehavior.start,
Key key,
ScrollPhysics physics}) {
return TabBarView(
controller: controller,
dragStartBehavior: dragStartBehavior,
key: key,
physics: physics,
children: this,
);
}