ExtendedPageView.custom constructor

ExtendedPageView.custom({
  1. Key? key,
  2. Axis scrollDirection = Axis.horizontal,
  3. bool reverse = false,
  4. PageController? controller,
  5. ScrollPhysics? physics,
  6. bool pageSnapping = true,
  7. ValueChanged<int>? onPageChanged,
  8. required SliverChildDelegate childrenDelegate,
  9. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  10. bool allowImplicitScrolling = false,
  11. String? restorationId,
  12. Clip clipBehavior = Clip.hardEdge,
  13. ScrollBehavior? scrollBehavior,
  14. bool padEnds = true,
  15. int cacheExtent = 0,
  16. bool shouldIgnorePointerWhenScrolling = true,
})

Implementation

ExtendedPageView.custom({
  super.key,
  super.scrollDirection = Axis.horizontal,
  super.reverse = false,
  super.controller,
  super.physics,
  super.pageSnapping = true,
  super.onPageChanged,
  required super.childrenDelegate,
  super.dragStartBehavior = DragStartBehavior.start,
  super.allowImplicitScrolling = false,
  super.restorationId,
  super.clipBehavior = Clip.hardEdge,
  super.scrollBehavior,
  super.padEnds = true,
  this.cacheExtent = 0,
  this.shouldIgnorePointerWhenScrolling = true,
}) : super.custom();