Column constructor

Column({
  1. required List<FlintWidget> children,
  2. double gap = 5.0,
  3. EdgeInsets? padding,
  4. EdgeInsets? margin,
  5. String? backgroundColor,
  6. BoxBorder? border,
  7. BorderRadius? borderRadius,
  8. Alignment alignment = Alignment.left,
  9. bool reverse = false,
  10. String? xData,
  11. String? xInit,
  12. String? xShow,
  13. Map<String, String>? xBind,
  14. Map<String, String>? xOn,
  15. String? xText,
  16. String? xHtml,
  17. String? xModel,
  18. String? xModelable,
  19. String? xFor,
  20. String? xTransition,
  21. String? xEffect,
  22. bool? xIgnore,
  23. String? xRef,
  24. bool? xCloak,
  25. String? xTeleport,
  26. bool? xIf,
  27. String? xId,
})

Creates a new Column widget.

The children parameter must not be null.

Implementation

Column({
  required this.children,
  this.gap = 5.0,
  this.padding,
  this.margin,
  this.backgroundColor,
  this.border,
  this.borderRadius,
  this.alignment = Alignment.left,
  this.reverse = false,
  super.xData,
  super.xInit,
  super.xShow,
  super.xBind,
  super.xOn,
  super.xText,
  super.xHtml,
  super.xModel,
  super.xModelable,
  super.xFor,
  super.xTransition,
  super.xEffect,
  super.xIgnore,
  super.xRef,
  super.xCloak,
  super.xTeleport,
  super.xIf,
  super.xId,
});