Column constructor
Column({
- required List<
FlintWidget> children, - double gap = 5.0,
- EdgeInsets? padding,
- EdgeInsets? margin,
- String? backgroundColor,
- BoxBorder? border,
- BorderRadius? borderRadius,
- Alignment alignment = Alignment.left,
- bool reverse = false,
- String? xData,
- String? xInit,
- String? xShow,
- Map<
String, String> ? xBind, - Map<
String, String> ? xOn, - String? xText,
- String? xHtml,
- String? xModel,
- String? xModelable,
- String? xFor,
- String? xTransition,
- String? xEffect,
- bool? xIgnore,
- String? xRef,
- bool? xCloak,
- String? xTeleport,
- bool? xIf,
- 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,
});