Column constructor
const
Column({
- Key? key,
- required List<
Widget> children, - MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- MainAxisSize mainAxisSize = MainAxisSize.max,
Creates a Column with the given children and alignment options.
Implementation
const Column({
super.key,
required super.children,
super.mainAxisAlignment,
super.crossAxisAlignment,
super.mainAxisSize,
}) : super(direction: Axis.vertical);