CLResponsiveGrid constructor

const CLResponsiveGrid({
  1. Key? key,
  2. required List<Widget> children,
  3. double gap = 16.0,
  4. int smColumns = 1,
  5. int mdColumns = 2,
  6. int lgColumns = 3,
  7. int xlColumns = 4,
})

Implementation

const CLResponsiveGrid({
  super.key,
  required this.children,
  this.gap = 16.0,
  this.smColumns = 1,
  this.mdColumns = 2,
  this.lgColumns = 3,
  this.xlColumns = 4,
});