MaterialRaisedButtonData constructor
MaterialRaisedButtonData({
- Key? widgetKey,
- Widget? child,
- Color? color,
- VoidCallback? onPressed,
- EdgeInsetsGeometry? padding,
- Color? disabledColor,
- Duration? animationDuration,
- Brightness? colorBrightness,
- double? disabledElevation,
- Color? disabledTextColor,
- double? elevation,
- Color? highlightColor,
- double? highlightElevation,
- ValueChanged<
bool> ? onHighlightChanged, - ShapeBorder? shape,
- Color? splashColor,
- Color? textColor,
- ButtonTextTheme? textTheme,
- Clip? clipBehavior,
- MaterialTapTargetSize? materialTapTargetSize,
Implementation
MaterialRaisedButtonData({
Key? widgetKey,
Widget? child,
Color? color,
VoidCallback? onPressed,
EdgeInsetsGeometry? padding,
Color? disabledColor,
this.animationDuration,
this.colorBrightness,
this.disabledElevation,
this.disabledTextColor,
this.elevation,
this.highlightColor,
this.highlightElevation,
this.onHighlightChanged,
this.shape,
this.splashColor,
this.textColor,
this.textTheme,
this.clipBehavior,
this.materialTapTargetSize,
}) : super(
widgetKey: widgetKey,
child: child,
color: color,
onPressed: onPressed,
padding: padding,
disabledColor: disabledColor);