MyRow constructor
const
MyRow({
- Key? key,
- required List<
Widget> children, - MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- WrapAlignment wrapAlignment = WrapAlignment.start,
- WrapAlignment wrapRunAlignment = WrapAlignment.start,
- WrapCrossAlignment wrapCrossAxisAlignment = WrapCrossAlignment.center,
- double wrapSpacing = 16.0,
- double wrapRunSpacing = 0.0,
Implementation
const MyRow({
super.key,
required this.children,
this.mainAxisAlignment = MainAxisAlignment.spaceBetween,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.wrapAlignment = WrapAlignment.start,
this.wrapRunAlignment = WrapAlignment.start,
this.wrapCrossAxisAlignment = WrapCrossAlignment.center,
this.wrapSpacing = 16.0,
this.wrapRunSpacing = 0.0,
});