ResponsiveGrid constructor

const ResponsiveGrid({
  1. Key? key,
  2. required List<Widget> children,
  3. int mobile = 2,
  4. int tablet = 4,
  5. int desktop = 6,
  6. double spacing = 12,
})

Implementation

const ResponsiveGrid({
  super.key,
  required this.children,
  this.mobile = 2,
  this.tablet = 4,
  this.desktop = 6,
  this.spacing = 12,
});