TabBarFastor constructor

TabBarFastor({
  1. required double width,
  2. required double height,
  3. required List<String> names,
  4. required Color indicatorColor,
  5. required Color unselectedLabelColor,
  6. required TabBarPressedFastor pressed,
  7. int? initialSelectIndex,
  8. double? fontSize,
  9. String? fontFamily,
  10. double? spaceBetweenLabelAndUnderline,
  11. Decoration? decorationTabBar,
  12. double? heightUnderline,
  13. bool? underlineShownBelowAllTabs,
})

Implementation

TabBarFastor( {
  required this.width,
  required this.height,
  required this.names,
  required this.indicatorColor,
  required this.unselectedLabelColor,
  required this.pressed,
  this.initialSelectIndex,
  this.fontSize,
  this.fontFamily,
  this.spaceBetweenLabelAndUnderline,
  this.decorationTabBar,
  this.heightUnderline,
  this.underlineShownBelowAllTabs
}) {
  calculateItemTabWidth();
  initDefaultValue();
}