OutlinedRoundedButton constructor

const OutlinedRoundedButton({
  1. Key? key,
  2. Widget? child,
  3. Widget? subtitle,
  4. Widget? leading,
  5. Widget? headline,
  6. VoidCallback? onPressed,
  7. VoidCallback? onLongPress,
  8. Gradient? gradient,
  9. double elevation = 0,
  10. Color? color,
  11. Color? disabled,
  12. double maxWidth = 250 * 0.72,
  13. double? maxHeight,
  14. BorderSide? border,
  15. double? height = 42,
  16. List<BoxShadow>? shadows,
  17. TextStyle? style,
})

Implementation

const OutlinedRoundedButton({
  super.key,
  this.child,
  this.subtitle,
  this.leading,
  this.headline,
  this.onPressed,
  this.onLongPress,
  this.gradient,
  this.elevation = 0,
  this.color,
  this.disabled,
  this.maxWidth = 250 * 0.72,
  this.maxHeight,
  this.border,
  this.height = 42,
  this.shadows,
  this.style,
});