ResponsiveRow constructor

ResponsiveRow({
  1. required List<Widget> children,
  2. int columnsCount = 12,
  3. Axis direction = Axis.horizontal,
  4. WrapAlignment alignment = WrapAlignment.start,
  5. double spacing = 0.0,
  6. WrapAlignment runAlignment = WrapAlignment.start,
  7. double runSpacing = 0.0,
  8. WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
  9. TextDirection? textDirection,
  10. VerticalDirection verticalDirection = VerticalDirection.down,
  11. bool forceOnlyRow = false,
})

Implementation

ResponsiveRow({
  required this.children,
  this.columnsCount = 12,
  this.direction = Axis.horizontal,
  this.alignment = WrapAlignment.start,
  this.spacing = 0.0,
  this.runAlignment = WrapAlignment.start,
  this.runSpacing = 0.0,
  this.crossAxisAlignment = WrapCrossAlignment.start,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
  this.forceOnlyRow = false,
}) : assert(columnsCount > 0);