TBMaker constructor

TBMaker({
  1. Key? key,
  2. required List<Widget> tabsList,
  3. required List<Widget> pagesList,
  4. dynamic onChanged(
    1. int Index
    )?,
  5. int? initIndex,
  6. AlignmentGeometry? tabsAlignment,
  7. DecorationImage? tabsBackGroundimage,
  8. BoxBorder? tabsBorder,
  9. List<BoxShadow>? tabsBoxShadow,
  10. double? tabsCircularRadius,
  11. Color? tabsColor,
  12. Gradient? tabsGradient,
  13. double? tabsHeight,
  14. EdgeInsetsGeometry? tabsMargin,
  15. EdgeInsetsGeometry? tabsPadding,
  16. double? tabsWidth,
  17. bool? Scrollable,
  18. EdgeInsetsGeometry? tabsRowPadding,
  19. required double? height,
  20. double? width,
  21. double? indicatorWeight,
  22. BoxDecoration? selectedTabDecoration,
  23. Color? indicatorColor,
})

Implementation

TBMaker(
    {super.key,
    required this.tabsList,
    required this.pagesList,
    this.onChanged,
    this.initIndex,
    this.tabsAlignment,
    this.tabsBackGroundimage,
    this.tabsBorder,
    this.tabsBoxShadow,
    this.tabsCircularRadius,
    this.tabsColor,
    this.tabsGradient,
    this.tabsHeight,
    this.tabsMargin,
    this.tabsPadding,
    this.tabsWidth,
    this.Scrollable,
    this.tabsRowPadding,
    required this.height,
    this.width,
    this.indicatorWeight,
    this.selectedTabDecoration,
    this.indicatorColor});