NestedTabBarView constructor

const NestedTabBarView({
  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. bool wantKeepAlive = true,
})

Implementation

const NestedTabBarView({
  super.key,
  required super.children,
  super.controller,
  super.physics,
  super.dragStartBehavior,
  super.viewportFraction,
  super.clipBehavior,
  this.wantKeepAlive = true,
});