TabThemeData constructor

const TabThemeData({
  1. EdgeInsets? padding,
  2. double? height,
  3. double? width,
  4. Color? tabBarBackgroundColor,
  5. TextStyle? textStyle,
  6. IconThemeData? iconThemeData,
  7. double? itemSpacing,
  8. EdgeInsets? itemPadding,
  9. Color? itemColor,
  10. Color? itemHoverColor,
  11. Color? itemHighlightColor,
  12. bool? itemFilled,
  13. Color? itemBackgroundColor,
  14. Color? itemHoverBackgroundColor,
  15. Color? itemHighlightBackgroundColor,
  16. Duration? menuTransitionDuration,
  17. Curve? menuTrasitionCurve,
  18. Curve? menuTrasitionReverseCurve,
})

Creates a TabThemeData.

Implementation

const TabThemeData({
  this.padding,
  this.height,
  this.width,
  this.tabBarBackgroundColor,
  this.textStyle,
  this.iconThemeData,
  this.itemSpacing,
  this.itemPadding,
  this.itemColor,
  this.itemHoverColor,
  this.itemHighlightColor,
  this.itemFilled,
  this.itemBackgroundColor,
  this.itemHoverBackgroundColor,
  this.itemHighlightBackgroundColor,
  this.menuTransitionDuration,
  this.menuTrasitionCurve,
  this.menuTrasitionReverseCurve,
});