RoundedContainer constructor
const
RoundedContainer({
- Key? key,
- EdgeInsetsGeometry? margin,
- EdgeInsetsGeometry? padding,
- required Widget child,
- Color? backgroundColor,
- Gradient? backgroundGradient,
- Color? borderColor,
- double borderRadius = 10,
- double borderWidth = 1,
- double? elevation,
- Color? shadowColor,
- double? width,
- double? height,
- double? minWidth,
- double? maxWidth,
- double? minHeight,
- double? maxHeight,
- Clip clipBehavior = Clip.none,
Implementation
const RoundedContainer({
super.key,
this.margin,
this.padding,
required this.child,
this.backgroundColor,
this.backgroundGradient,
this.borderColor,
this.borderRadius = 10,
this.borderWidth = 1,
this.elevation,
this.shadowColor,
this.width,
this.height,
this.minWidth,
this.maxWidth,
this.minHeight,
this.maxHeight,
this.clipBehavior = Clip.none,
});