Row constructor
Row({
- List<
Widget> children = const [], - int gap = 0,
- MainAxisAlignment mainAxisAlignment = .start,
- CrossAxisAlignment crossAxisAlignment = .start,
- MainAxisSize mainAxisSize = .min,
- int? width,
- int? height,
- Key? key,
Implementation
Row({
super.children = const [],
super.gap = 0,
super.mainAxisAlignment = .start,
super.crossAxisAlignment = .start,
super.mainAxisSize = .min,
int? width,
int? height,
super.key,
}) : super(
direction: .horizontal,
mainAxisExtent: width,
crossAxisExtent: height,
);