ResponsiveListView constructor
const
ResponsiveListView({
- Key? key,
- required List<
Widget> children, - double spacing = 8.0,
- bool shrinkWrap = false,
- ScrollPhysics? physics,
- EdgeInsets? padding,
- Axis mobileDirection = Axis.vertical,
- Axis? tabletDirection,
- Axis? desktopDirection,
Implementation
const ResponsiveListView({
Key? key,
required this.children,
this.spacing = 8.0,
this.shrinkWrap = false,
this.physics,
this.padding,
this.mobileDirection = Axis.vertical,
this.tabletDirection,
this.desktopDirection,
}) : super(key: key);