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