ResponsiveRow constructor
- Key? key,
- required List<
ResponsiveColumn> children, - WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
- double totalSegments = 12,
- double horizontalSpacing = 0,
- double runSpacing = 0,
- double? columnHeight,
- double? columnMaxHeight,
- double? columnMinHeight,
- Axis direction = Axis.horizontal,
- VerticalDirection verticalDirection = VerticalDirection.down,
- TextDirection textDirection = TextDirection.ltr,
- WrapAlignment alignment = WrapAlignment.start,
- WrapAlignment runAlignment = WrapAlignment.start,
Creates a ResponsiveRow with the given parameters.
Implementation
const ResponsiveRow({
super.key,
required this.children,
this.crossAxisAlignment = WrapCrossAlignment.start,
this.totalSegments = 12,
this.horizontalSpacing = 0,
this.runSpacing = 0,
this.columnHeight,
this.columnMaxHeight,
this.columnMinHeight,
this.direction = Axis.horizontal,
this.verticalDirection = VerticalDirection.down,
this.textDirection = TextDirection.ltr,
this.alignment = WrapAlignment.start,
this.runAlignment = WrapAlignment.start,
});