ProCard constructor
const
ProCard({
- Key? key,
- double? width,
- double? height,
- Color? backgroundColor,
- EdgeInsets? padding,
- EdgeInsets? margin,
- Color? borderColor,
- double? borderWidth,
- double? borderRadius,
- BorderRadius? customBorderRadius,
- bool? disableShadow,
- Color? shadowColor,
- Offset? shadowOffset,
- double? shadowBlurRadius,
- double? shadowSpreadRadius,
- bool? gradientEnable,
- Gradient? gradient,
- Widget? child,
ProCard is simplified and very easy to use when you need a card design. We provided major parameters for you so that you can design it on your way easily.
Implementation
const ProCard({
Key? key,
this.width,
this.height,
this.backgroundColor,
this.padding,
this.margin,
this.borderColor,
this.borderWidth,
this.borderRadius,
this.customBorderRadius,
this.disableShadow,
this.shadowColor,
this.shadowOffset,
this.shadowBlurRadius,
this.shadowSpreadRadius,
this.gradientEnable,
this.gradient,
this.child,
}) : super(key: key);