NiceResponsiveGrid constructor

const NiceResponsiveGrid({
  1. Key? key,
  2. required List<Widget> children,
  3. int columnsXs = 1,
  4. int? columnsSm,
  5. int? columnsMd,
  6. int? columnsLg,
  7. int? columnsXl,
  8. int? columnsXxl,
  9. double spacing = 16,
  10. double runSpacing = 16,
  11. double? childAspectRatio,
})

Implementation

const NiceResponsiveGrid({
  super.key,
  required this.children,
  this.columnsXs = 1,
  this.columnsSm,
  this.columnsMd,
  this.columnsLg,
  this.columnsXl,
  this.columnsXxl,
  this.spacing = 16,
  this.runSpacing = 16,
  this.childAspectRatio,
});