SpacedColumn constructor

const SpacedColumn({
  1. Key? key,
  2. double top = 0,
  3. double bottom = 0,
  4. double verticalSpacing = 0,
  5. double sideMargin = 0,
  6. double maxWidth = double.infinity,
  7. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
  8. MainAxisSize mainAxisSize = MainAxisSize.min,
  9. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  10. TextDirection? textDirection,
  11. VerticalDirection verticalDirection = VerticalDirection.down,
  12. TextBaseline? textBaseline,
  13. required List<Widget> children,
})

Implementation

const SpacedColumn({
  Key? key,
  this.top = 0,
  this.bottom = 0,
  this.verticalSpacing = 0,
  this.sideMargin = 0,
  this.maxWidth = double.infinity,
  this.mainAxisAlignment = MainAxisAlignment.center,
  this.mainAxisSize = MainAxisSize.min,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
  this.textBaseline,
  required this.children,
}) : super(key: key);