ButtonThemeData constructor

const ButtonThemeData({
  1. Axis? axis,
  2. IconThemeData? iconThemeData,
  3. double? itemSpacing,
  4. double? filledSpacing,
  5. double? height,
  6. double? minWidth,
  7. TextStyle? textStyle,
  8. Color? disabledColor,
  9. Color? color,
  10. Color? focusColor,
  11. Color? hoverColor,
  12. Color? highlightColor,
  13. Color? background,
  14. Color? focusBackground,
  15. Color? hoverBackground,
  16. Color? highlightBackground,
  17. Color? foreground,
  18. Color? hoverForeground,
  19. Color? highlightForeground,
  20. Duration? animationDuration,
})

Creates a ButtonThemeData.

Implementation

const ButtonThemeData({
  this.axis,
  this.iconThemeData,
  this.itemSpacing,
  this.filledSpacing,
  this.height,
  this.minWidth,
  this.textStyle,
  this.disabledColor,
  this.color,
  this.focusColor,
  this.hoverColor,
  this.highlightColor,
  this.background,
  this.focusBackground,
  this.hoverBackground,
  this.highlightBackground,
  this.foreground,
  this.hoverForeground,
  this.highlightForeground,
  this.animationDuration,
});