HorizontalList constructor

HorizontalList({
  1. required int itemCount,
  2. required IndexedWidgetBuilder itemBuilder,
  3. double? spacing,
  4. double? runSpacing,
  5. EdgeInsets? padding,
  6. ScrollPhysics? physics,
  7. ScrollController? controller,
  8. bool reverse = false,
  9. WrapAlignment? wrapAlignment,
  10. WrapCrossAlignment? crossAxisAlignment,
  11. Key? key,
})

Implementation

HorizontalList({
  required this.itemCount,
  required this.itemBuilder,
  this.spacing,
  this.runSpacing,
  this.padding,
  this.physics,
  this.controller,
  this.reverse = false,
  this.wrapAlignment,
  this.crossAxisAlignment,
  super.key,
});