ResponsiveListView constructor

const ResponsiveListView({
  1. Key? key,
  2. required List<Widget> children,
  3. double spacing = 8.0,
  4. bool shrinkWrap = false,
  5. ScrollPhysics? physics,
  6. EdgeInsets? padding,
  7. Axis mobileDirection = Axis.vertical,
  8. Axis? tabletDirection,
  9. 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);