FlutterFlowIconButton constructor

const FlutterFlowIconButton({
  1. Key? key,
  2. required Widget icon,
  3. Color? borderColor,
  4. double? borderRadius,
  5. double? borderWidth,
  6. double? buttonSize,
  7. Color? fillColor,
  8. Color? disabledColor,
  9. Color? disabledIconColor,
  10. Color? hoverColor,
  11. Color? hoverIconColor,
  12. dynamic onPressed()?,
  13. bool showLoadingIndicator = false,
})

Implementation

const FlutterFlowIconButton({
  super.key,
  required this.icon,
  this.borderColor,
  this.borderRadius,
  this.borderWidth,
  this.buttonSize,
  this.fillColor,
  this.disabledColor,
  this.disabledIconColor,
  this.hoverColor,
  this.hoverIconColor,
  this.onPressed,
  this.showLoadingIndicator = false,
});