Row constructor
Row({
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- VerticalDirection verticalDirection = VerticalDirection.down,
- List<
Widget> children = const <Widget>[],
Implementation
Row({
super.mainAxisAlignment,
super.mainAxisSize,
super.crossAxisAlignment,
super.verticalDirection,
super.children,
}) : super(
direction: Axis.horizontal,
);