MiniGrid constructor
const
MiniGrid({
- Key? key,
- required List<
MiniGridItem> items, - int columns = 3,
- double spacing = 12,
- EdgeInsetsGeometry? padding,
- double? maxItemWidth,
- double childAspectRatio = 1,
Implementation
const MiniGrid({
super.key,
required this.items,
this.columns = 3,
this.spacing = 12,
this.padding,
this.maxItemWidth,
this.childAspectRatio = 1,
});