HubbleButtonLarge constructor

const HubbleButtonLarge({
  1. Key? key,
  2. HubbleButtonLargeStyle? style,
  3. required WidgetBuilder child,
  4. required VoidCallback? onPressed,
  5. bool? showLoading,
  6. bool? showRetry,
  7. bool? disabled,
  8. Color? color,
  9. ButtonStyle? buttonStyle,
  10. double? radius,
  11. double? height,
  12. double? width = double.infinity,
  13. Color? disabledColor,
  14. TextStyle? textStyle,
  15. TextStyle? disabledTextStyle,
  16. EdgeInsets? padding,
  17. Color? loaderColor,
  18. BoxBorder? border,
})

Implementation

const HubbleButtonLarge({
  super.key,
  this.style,
  required this.child,
  required this.onPressed,
  this.showLoading,
  this.showRetry,
  this.disabled,
  this.color,
  this.buttonStyle,
  this.radius,
  this.height,
  this.width = double.infinity,
  this.disabledColor,
  this.textStyle,
  this.disabledTextStyle,
  this.padding,
  this.loaderColor,
  this.border,
});