ResponsiveRow constructor

const ResponsiveRow({
  1. Key? key,
  2. required List<ResponsiveColumn> children,
  3. WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
  4. double totalSegments = 12,
  5. double horizontalSpacing = 0,
  6. double runSpacing = 0,
  7. double? columnHeight,
  8. double? columnMaxHeight,
  9. double? columnMinHeight,
  10. Axis direction = Axis.horizontal,
  11. VerticalDirection verticalDirection = VerticalDirection.down,
  12. TextDirection textDirection = TextDirection.ltr,
  13. WrapAlignment alignment = WrapAlignment.start,
  14. 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,
});