CyberTabView constructor

const CyberTabView({
  1. Key? key,
  2. required List<CyberTab> tabs,
  3. int initialIndex = 0,
  4. Color? backColorTab,
  5. Color? textColorTab,
  6. Color? selectBackColorTab,
  7. Color? selectTextColorTab,
  8. Color? indicatorColor,
  9. double? tabBarHeight,
  10. bool isScrollable = true,
  11. bool keepAlive = false,
  12. dynamic onTabChanged(
    1. int index
    )?,
  13. TabBarIndicatorSize? indicatorSize,
  14. EdgeInsets? labelPadding,
  15. EdgeInsets? indicatorPadding,
  16. Decoration? indicator,
  17. bool enableFeedback = true,
  18. BorderRadius? tabBorderRadius,
  19. double? tabSpacing,
})

Implementation

const CyberTabView({
  super.key,
  required this.tabs,
  this.initialIndex = 0,
  this.backColorTab,
  this.textColorTab,
  this.selectBackColorTab,
  this.selectTextColorTab,
  this.indicatorColor,
  this.tabBarHeight,
  this.isScrollable = true,
  this.keepAlive = false,
  this.onTabChanged,
  this.indicatorSize,
  this.labelPadding,
  this.indicatorPadding,
  this.indicator,
  this.enableFeedback = true,
  this.tabBorderRadius,
  this.tabSpacing,
});