ResponsiveGridView constructor

const ResponsiveGridView({
  1. Key? key,
  2. required List<Widget> children,
  3. double spacing = 8.0,
  4. double runSpacing = 8.0,
  5. int mobileColumns = 2,
  6. int? tabletColumns,
  7. int? desktopColumns,
  8. bool shrinkWrap = false,
  9. ScrollPhysics? physics,
  10. EdgeInsets? padding,
})

Implementation

const ResponsiveGridView({
  Key? key,
  required this.children,
  this.spacing = 8.0,
  this.runSpacing = 8.0,
  this.mobileColumns = 2,
  this.tabletColumns,
  this.desktopColumns,
  this.shrinkWrap = false,
  this.physics,
  this.padding,
}) : super(key: key);