TabBar constructor

const TabBar({
  1. required List<TabData> tabs,
  2. Color? color,
  3. Unit? height,
  4. BorderRadius? borderRadius,
  5. Overflow? overflow,
  6. Display? display,
  7. JustifyContent? mainAxisAlignment,
  8. EdgeInsets? labelPadding,
  9. Key? key,
})

Implementation

const TabBar({
  required this.tabs,
  this.color,
  this.height,
  this.borderRadius,
  this.overflow,
  this.display,
  this.mainAxisAlignment,
  this.labelPadding,
  super.key,
});