PickerTabBar.secondary constructor

const PickerTabBar.secondary({
  1. Key? key,
  2. required List<Widget> tabs,
  3. TabController? controller,
  4. bool isScrollable = false,
  5. EdgeInsetsGeometry? padding,
  6. Color? indicatorColor,
  7. bool automaticIndicatorColorAdjustment = true,
  8. double indicatorWeight = 2.0,
  9. EdgeInsetsGeometry indicatorPadding = EdgeInsets.zero,
  10. Decoration? indicator,
  11. TabBarIndicatorSize? indicatorSize,
  12. Color? dividerColor,
  13. Color? labelColor,
  14. TextStyle? labelStyle,
  15. EdgeInsetsGeometry? labelPadding,
  16. Color? unselectedLabelColor,
  17. TextStyle? unselectedLabelStyle,
  18. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  19. MaterialStateProperty<Color?>? overlayColor,
  20. MouseCursor? mouseCursor,
  21. bool? enableFeedback,
  22. ValueChanged<int>? onTap,
  23. ScrollPhysics? physics,
  24. InteractiveInkFeatureFactory? splashFactory,
  25. BorderRadius? splashBorderRadius,
})

Creates a Material Design secondary tab bar.

Secondary tabs are used within a content area to further separate related content and establish hierarchy.

{@tool dartpad} This sample showcases nested Material 3 PickerTabBars. It consists of a primary PickerTabBar with nested a secondary PickerTabBar. The primary PickerTabBar uses a DefaultTabController while the secondary PickerTabBar uses a TabController.

** See code in examples/api/lib/material/tabs/tab_bar.2.dart ** {@end-tool}

See also:

Implementation

const PickerTabBar.secondary({
  super.key,
  required this.tabs,
  this.controller,
  this.isScrollable = false,
  this.padding,
  this.indicatorColor,
  this.automaticIndicatorColorAdjustment = true,
  this.indicatorWeight = 2.0,
  this.indicatorPadding = EdgeInsets.zero,
  this.indicator,
  this.indicatorSize,
  this.dividerColor,
  this.labelColor,
  this.labelStyle,
  this.labelPadding,
  this.unselectedLabelColor,
  this.unselectedLabelStyle,
  this.dragStartBehavior = DragStartBehavior.start,
  this.overlayColor,
  this.mouseCursor,
  this.enableFeedback,
  this.onTap,
  this.physics,
  this.splashFactory,
  this.splashBorderRadius,
})  : _isPrimary = false,
      assert(indicator != null || (indicatorWeight > 0.0));