ExtendedTabBarView constructor

const ExtendedTabBarView({
  1. Key? key,
  2. required List<Widget> children,
  3. TabController? controller,
  4. ScrollPhysics? physics,
  5. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  6. double viewportFraction = 1.0,
  7. Clip clipBehavior = Clip.hardEdge,
  8. int cacheExtent = 0,
  9. bool link = true,
  10. LinkPageController? pageController,
  11. bool shouldIgnorePointerWhenScrolling = true,
  12. Axis scrollDirection = Axis.horizontal,
})

Implementation

const ExtendedTabBarView({
  super.key,
  required super.children,
  super.controller,
  super.physics,
  super.dragStartBehavior = DragStartBehavior.start,
  super.viewportFraction = 1.0,
  super.clipBehavior = Clip.hardEdge,
  this.cacheExtent = 0,
  this.link = true,
  this.pageController,
  this.shouldIgnorePointerWhenScrolling = true,
  this.scrollDirection = Axis.horizontal,
});