GridView constructor

const GridView({
  1. Key? key,
  2. required SliverGridDelegate gridDelegate,
  3. required List<Widget> children,
  4. ScrollPhysics? physics,
  5. bool shrinkWrap = false,
  6. EdgeInsetsGeometry? padding,
})

Implementation

const GridView({
  super.key,
  required this.gridDelegate,
  required this.children,
  this.physics,
  this.shrinkWrap = false,
  this.padding,
});