MadroidResponsiveListView constructor

const MadroidResponsiveListView({
  1. Key? key,
  2. required int count,
  3. required List<Widget> children,
  4. Widget separator = kEmptyWidget,
  5. bool visible = true,
  6. ScrollController? controller,
  7. double spacing = 0.0,
  8. double margin = 0.0,
  9. double? marginTop,
  10. double? marginLeft,
  11. double? marginRight,
  12. double? marginBottom,
  13. double? marginVertical,
  14. double? marginHorizontal,
  15. double padding = 0.0,
  16. double? paddingTop,
  17. double? paddingLeft,
  18. double? paddingRight,
  19. double? paddingBottom,
  20. double? paddingVertical,
  21. double? paddingHorizontal,
  22. Axis scrollDirection = Axis.vertical,
  23. bool scroll = true,
  24. bool shrinkWrap = false,
  25. bool reverse = false,
})

Implementation

const MadroidResponsiveListView({
  super.key,
  required this.count,
  required this.children,
  this.separator = kEmptyWidget,
  this.visible = true,
  this.controller,
  this.spacing = 0.0,
  this.margin = 0.0,
  this.marginTop,
  this.marginLeft,
  this.marginRight,
  this.marginBottom,
  this.marginVertical,
  this.marginHorizontal,
  this.padding = 0.0,
  this.paddingTop,
  this.paddingLeft,
  this.paddingRight,
  this.paddingBottom,
  this.paddingVertical,
  this.paddingHorizontal,
  this.scrollDirection = Axis.vertical,
  this.scroll = true,
  this.shrinkWrap = false,
  this.reverse = false,
}) : assert(count > 0, '"columnCount" must be a positive integer value');