FloatingActionButtonThemeData constructor

const FloatingActionButtonThemeData(
  1. {Color? foregroundColor,
  2. Color? backgroundColor,
  3. Color? focusColor,
  4. Color? hoverColor,
  5. Color? splashColor,
  6. double? elevation,
  7. double? focusElevation,
  8. double? hoverElevation,
  9. double? disabledElevation,
  10. double? highlightElevation,
  11. ShapeBorder? shape,
  12. bool? enableFeedback,
  13. double? iconSize,
  14. BoxConstraints? sizeConstraints,
  15. BoxConstraints? smallSizeConstraints,
  16. BoxConstraints? largeSizeConstraints,
  17. BoxConstraints? extendedSizeConstraints,
  18. double? extendedIconLabelSpacing,
  19. EdgeInsetsGeometry? extendedPadding,
  20. TextStyle? extendedTextStyle,
  21. MaterialStateProperty<MouseCursor?>? mouseCursor}
)

Creates a theme that can be used for ThemeData.floatingActionButtonTheme.

Implementation

const FloatingActionButtonThemeData({
  this.foregroundColor,
  this.backgroundColor,
  this.focusColor,
  this.hoverColor,
  this.splashColor,
  this.elevation,
  this.focusElevation,
  this.hoverElevation,
  this.disabledElevation,
  this.highlightElevation,
  this.shape,
  this.enableFeedback,
  this.iconSize,
  this.sizeConstraints,
  this.smallSizeConstraints,
  this.largeSizeConstraints,
  this.extendedSizeConstraints,
  this.extendedIconLabelSpacing,
  this.extendedPadding,
  this.extendedTextStyle,
  this.mouseCursor,
});