RoundedContainer constructor

const RoundedContainer({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? margin,
  4. EdgeInsetsGeometry? padding,
  5. Color? backgroundColor,
  6. Color? borderColor,
  7. double borderRadius = 10,
  8. 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,
});