GridPageView constructor

const GridPageView({
  1. Key? key,
  2. required List<Widget> children,
  3. int column = 4,
  4. int row = 2,
  5. double columnSpacing = 0.0,
  6. double rowSpacing = 0.0,
  7. double itemRatio = 1.2,
  8. double minheight = 200,
  9. IndicatorBuild? indicatorBuild,
})

Implementation

const GridPageView({
  Key? key,
  required this.children,
  this.column = 4,
  this.row = 2,
  this.columnSpacing = 0.0,
  this.rowSpacing = 0.0,
  this.itemRatio = 1.2,
  this.minheight = 200,
  this.indicatorBuild,
}) : super(key: key);