GridView constructor
const
GridView({
- Key? key,
- required SliverGridDelegate gridDelegate,
- required List<
Widget> children, - ScrollPhysics? physics,
- bool shrinkWrap = false,
- EdgeInsetsGeometry? padding,
Implementation
const GridView({
super.key,
required this.gridDelegate,
required this.children,
this.physics,
this.shrinkWrap = false,
this.padding,
});