SuperListView.custom constructor

const SuperListView.custom({
  1. Key? key,
  2. Axis scrollDirection = Axis.vertical,
  3. bool reverse = false,
  4. ScrollController? controller,
  5. bool? primary,
  6. ScrollPhysics? physics,
  7. bool shrinkWrap = false,
  8. EdgeInsetsGeometry? padding,
  9. required SliverChildDelegate childrenDelegate,
  10. double? cacheExtent,
  11. int? semanticChildCount,
  12. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  13. ScrollViewKeyboardDismissBehavior? keyboardDismissBehavior,
  14. String? restorationId,
  15. Clip clipBehavior = Clip.hardEdge,
  16. ListController? listController,
  17. ExtentEstimationProvider? extentEstimation,
  18. ExtentPrecalculationPolicy? extentPrecalculationPolicy,
  19. bool delayPopulatingCacheArea = false,
})

Creates SuperListView with a custom child model.

See ListView.custom for details.

Implementation

const SuperListView.custom({
  super.key,
  super.scrollDirection,
  super.reverse,
  super.controller,
  super.primary,
  super.physics,
  super.shrinkWrap,
  super.padding,
  required this.childrenDelegate,
  super.cacheExtent,
  super.semanticChildCount,
  super.dragStartBehavior,
  super.keyboardDismissBehavior,
  super.restorationId,
  super.clipBehavior,
  this.listController,
  this.extentEstimation,
  this.extentPrecalculationPolicy,
  this.delayPopulatingCacheArea = false,
});