NUIColumn constructor

NUIColumn({
  1. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  2. MainAxisSize mainAxisSize = MainAxisSize.max,
  3. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  4. TextDirection? textDirection,
  5. VerticalDirection verticalDirection = VerticalDirection.down,
  6. TextBaseline textBaseline = TextBaseline.alphabetic,
  7. required List<Widget?> children,
  8. bool showDividerStart = false,
  9. bool showDividerEnd = false,
  10. bool showDividerMiddle = true,
  11. Divider? divider,
  12. 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);