WColumn constructor

const WColumn({
  1. Key? key,
  2. required List<Widget> children,
  3. String? className,
  4. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  5. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  6. EdgeInsetsGeometry? padding,
  7. EdgeInsetsGeometry? margin,
  8. Color? backgroundColor,
  9. MainAxisSize mainAxisSize = MainAxisSize.max,
  10. TextDirection? textDirection,
  11. VerticalDirection verticalDirection = VerticalDirection.down,
  12. TextBaseline? textBaseline,
})

Implementation

const WColumn({
  super.key,
  required this.children,
  this.className,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.padding,
  this.margin,
  this.backgroundColor,
  this.mainAxisSize = MainAxisSize.max,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
  this.textBaseline,
});