SpacedColumn constructor
const
SpacedColumn({
- Key? key,
- double top = 0,
- double bottom = 0,
- double verticalSpacing = 0,
- double sideMargin = 0,
- double maxWidth = double.infinity,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
- MainAxisSize mainAxisSize = MainAxisSize.min,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- TextDirection? textDirection,
- VerticalDirection verticalDirection = VerticalDirection.down,
- TextBaseline? textBaseline,
- 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);