xTabBarView method

Widget xTabBarView (
  1. {TabController controller,
  2. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  3. Key key,
  4. 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,
  );
}