FKappaGrid constructor

const FKappaGrid({
  1. Key? key,
  2. required List<Widget> children,
  3. int mobileCols = 4,
  4. int tabletCols = 8,
  5. int desktopCols = 12,
  6. double gutter = 16.0,
})

Implementation

const FKappaGrid({
  super.key,
  required this.children,
  this.mobileCols = 4,
  this.tabletCols = 8,
  this.desktopCols = 12,
  this.gutter = 16.0,
});