BaseTabsPage constructor

const BaseTabsPage({
  1. required List<TabItem> tabs,
  2. BoxDecoration? decoration,
  3. int? startTabIndex,
  4. TextStyle? tabLabelStyle,
  5. Color unselectedColor = Colors.black,
  6. Color? selectedColor,
  7. ValueSetter<int>? onTabChanged,
  8. ValueSetter<TabItem>? onTabActive,
  9. double height = kTabHeight,
})

Implementation

const BaseTabsPage({
  required this.tabs,
  this.decoration,
  this.startTabIndex,
  this.tabLabelStyle,
  this.unselectedColor = Colors.black,
  this.selectedColor,
  this.onTabChanged,
  this.onTabActive,
  this.height = kTabHeight,
});