TenTabs constructor

const TenTabs({
  1. Key? key,
  2. required List<TenTab> tabs,
  3. TabController? controller,
  4. double dividerHeight = 0,
  5. bool showIndicator = false,
  6. double padding = 8,
  7. TabAlignment? tabAlignment,
  8. TextStyle? labelStyle,
  9. void onTap(
    1. int
    )?,
})

Implementation

const TenTabs(
    {super.key,
    required this.tabs,
    this.controller,
    this.dividerHeight = 0,
    this.showIndicator = false,
    this.padding = 8,
    this.tabAlignment,
    this.labelStyle,
    this.onTap});