NestedPageView.custom constructor

const NestedPageView.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. HitTestBehavior hitTestBehavior = HitTestBehavior.opaque,
  14. ScrollBehavior? scrollBehavior,
  15. bool padEnds = true,
  16. bool wantKeepAlive = true,
})

Implementation

const NestedPageView.custom({
  super.key,
  super.scrollDirection,
  super.reverse,
  super.controller,
  super.physics,
  super.pageSnapping,
  super.onPageChanged,
  required super.childrenDelegate,
  super.dragStartBehavior,
  super.allowImplicitScrolling,
  super.restorationId,
  super.clipBehavior,
  super.hitTestBehavior,
  super.scrollBehavior,
  super.padEnds,
  this.wantKeepAlive = true,
}) : super.custom();