SimpleContainer constructor

const SimpleContainer({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Color? backgroundColor,
  5. Gradient? gradient,
  6. Color? borderColor,
  7. double borderRadius = 12.0,
  8. double borderWidth = 1.0,
  9. Widget? child,
  10. EdgeInsetsGeometry? padding,
  11. EdgeInsetsGeometry? margin,
  12. BoxShape? shape,
  13. Clip? clipBehavior,
  14. Alignment? alignment,
})

Implementation

const SimpleContainer({
  super.key,
  this.width,
  this.height,
  this.backgroundColor,
  this.gradient,
  this.borderColor,
  this.borderRadius = 12.0,
  this.borderWidth = 1.0,
  this.child,
  this.padding,
  this.margin,
  this.shape,
  this.clipBehavior,
  this.alignment,
});