NUIColumn constructor
NUIColumn({
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- TextDirection? textDirection,
- VerticalDirection verticalDirection = VerticalDirection.down,
- TextBaseline textBaseline = TextBaseline.alphabetic,
- required List<
Widget?> children, - bool showDividerStart = false,
- bool showDividerEnd = false,
- bool showDividerMiddle = true,
- Divider? divider,
- Key? key,
Implementation
NUIColumn({
this.mainAxisAlignment = MainAxisAlignment.start,
this.mainAxisSize = MainAxisSize.max,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.textDirection,
this.verticalDirection = VerticalDirection.down,
this.textBaseline = TextBaseline.alphabetic,
required this.children,
this.showDividerStart = false,
this.showDividerEnd = false,
this.showDividerMiddle = true,
this.divider,
Key? key
}): super(key: key);