WidgetRippleButton constructor

const WidgetRippleButton({
  1. Key? key,
  2. String title = '',
  3. Color? color,
  4. Color? hoverColor,
  5. double radius = 26,
  6. double elevation = 0,
  7. VoidCallback? onTap,
  8. double? height,
  9. double? width,
  10. BoxBorder? border,
  11. TextStyle? titleStyle,
  12. BorderRadius? borderRadius,
  13. Widget? child,
  14. Color? shadowColor,
})

Implementation

const WidgetRippleButton({
  super.key,
  this.title = '',
  this.color,
  this.hoverColor,
  this.radius = 26,
  this.elevation = 0,
  this.onTap,
  this.height,
  this.width,
  this.border,
  this.titleStyle,
  this.borderRadius,
  this.child,
  this.shadowColor,
});