UColumn constructor

const UColumn({
  1. required List<Widget> children,
  2. Key? key,
  3. double spacing = 8.0,
  4. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  5. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  6. MainAxisSize mainAxisSize = MainAxisSize.max,
  7. double? width,
  8. double? height,
  9. EdgeInsets? padding,
  10. EdgeInsets? margin,
  11. double? radius,
  12. BoxBorder? border,
  13. Color? color,
  14. Gradient? gradient,
  15. DecorationImage? image,
  16. List<BoxShadow>? boxShadow,
  17. BoxConstraints? constraints,
  18. AlignmentGeometry? alignment,
  19. Clip clipBehavior = Clip.hardEdge,
  20. Matrix4? transform,
  21. Decoration? foregroundDecoration,
})

Implementation

const UColumn({
  required this.children,
  super.key,
  this.spacing = 8.0,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisSize = MainAxisSize.max,
  this.width,
  this.height,
  this.padding,
  this.margin,
  this.radius,
  this.border,
  this.color,
  this.gradient,
  this.image,
  this.boxShadow,
  this.constraints,
  this.alignment,
  this.clipBehavior = Clip.hardEdge,
  this.transform,
  this.foregroundDecoration,
});