ResponsiveGrid constructor
const
ResponsiveGrid({
- required List<
Widget> children, - Axis scrollDirection = Axis.vertical,
- bool reverse = false,
- ScrollController? controller,
- bool? primary,
- ScrollPhysics? physics,
- bool shrinkWrap = false,
- int axisSpaces = 2,
- Key? key,
Implementation
const ResponsiveGrid(
{required this.children,
this.scrollDirection = Axis.vertical,
this.reverse = false,
this.controller,
this.primary,
this.physics,
this.shrinkWrap = false,
this.axisSpaces = 2,
Key? key})
: super(key: key);