CodeNestTabBar constructor

const CodeNestTabBar({
  1. Key? key,
  2. required List<CodeNestTabBarItem> items,
  3. required TabController controller,
  4. Color? indicatorColor,
  5. TextStyle? selectedLabelStyle,
  6. TextStyle? unselectedLabelStyle,
  7. Color? labelColor,
  8. Color? unselectedLabelColor,
  9. bool isScrollable = false,
  10. Color? backgroundColor,
})

Implementation

const CodeNestTabBar({
  super.key,
  required this.items,
  required this.controller,
  this.indicatorColor,
  this.selectedLabelStyle,
  this.unselectedLabelStyle,
  this.labelColor,
  this.unselectedLabelColor,
  this.isScrollable = false,
  this.backgroundColor,
});