NiceResponsiveRow constructor

const NiceResponsiveRow({
  1. Key? key,
  2. required List<NiceResponsiveColumn> children,
  3. double spacing = 16,
  4. double runSpacing = 16,
  5. WrapAlignment alignment = WrapAlignment.start,
  6. WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
})

Implementation

const NiceResponsiveRow({
  super.key,
  required this.children,
  this.spacing = 16,
  this.runSpacing = 16,
  this.alignment = WrapAlignment.start,
  this.crossAxisAlignment = WrapCrossAlignment.start,
});