RoundedContainer constructor
const
RoundedContainer({
- Key? key,
- required Widget child,
- EdgeInsetsGeometry? margin,
- EdgeInsetsGeometry? padding,
- Color? backgroundColor,
- Color? borderColor,
- double borderRadius = 10,
- double? elevation,
Creates a RoundedContainer with customizable styling.
Implementation
const RoundedContainer({
super.key,
required this.child,
this.margin,
this.padding,
this.backgroundColor,
this.borderColor,
this.borderRadius = 10,
this.elevation,
});