UContainer constructor

const UContainer({
  1. Widget? child,
  2. Key? key,
  3. EdgeInsets? padding,
  4. EdgeInsets? margin,
  5. Color? color,
  6. Gradient? gradient,
  7. DecorationImage? image,
  8. BoxBorder? border,
  9. BorderRadius? borderRadius,
  10. List<BoxShadow>? boxShadow,
  11. double? width,
  12. double? height,
  13. BoxConstraints? constraints,
  14. AlignmentGeometry? alignment,
  15. Clip clipBehavior = Clip.none,
  16. Matrix4? transform,
  17. Decoration? foregroundDecoration,
})

Implementation

const UContainer({
  this.child,
  super.key,
  this.padding,
  this.margin,
  this.color,
  this.gradient,
  this.image,
  this.border,
  this.borderRadius,
  this.boxShadow,
  this.width,
  this.height,
  this.constraints,
  this.alignment,
  this.clipBehavior = Clip.none,
  this.transform,
  this.foregroundDecoration,
});