GesturePageView.builder constructor
- Key? key,
- Axis scrollDirection = Axis.horizontal,
- bool reverse = false,
- ExtendedPageController? controller,
- ScrollPhysics? physics,
- bool pageSnapping = true,
- ValueChanged<
int> ? onPageChanged, - required IndexedWidgetBuilder itemBuilder,
- int? itemCount,
- DragStartBehavior dragStartBehavior = DragStartBehavior.start,
- bool allowImplicitScrolling = false,
- String? restorationId,
- Clip clipBehavior = Clip.hardEdge,
- ScrollBehavior? scrollBehavior,
- bool padEnds = true,
- int preloadPagesCount = 0,
Creates a scrollable list that works page by page using widgets that are created on demand.
This constructor is appropriate for page views with a large (or infinite) number of children because the builder is called only for those children that are actually visible.
Providing a non-null itemCount
lets the GesturePageView compute the maximum
scroll extent.
itemBuilder
will be called only with indices greater than or equal to
zero and less than itemCount
.
PageView.builder by default does not support child reordering. If you are planning to change child order at a later time, consider using GesturePageView or PageView.custom.
If allowImplicitScrolling is true, the PageView will participate in accessibility scrolling more like a ListView, where implicit scroll actions will move to the next page rather than into the contents of the PageView.
Implementation
GesturePageView.builder({
Key? key,
this.scrollDirection = Axis.horizontal,
this.reverse = false,
ExtendedPageController? controller,
this.physics,
this.pageSnapping = true,
this.onPageChanged,
required IndexedWidgetBuilder itemBuilder,
int? itemCount,
this.dragStartBehavior = DragStartBehavior.start,
this.allowImplicitScrolling = false,
this.restorationId,
this.clipBehavior = Clip.hardEdge,
this.scrollBehavior,
this.padEnds = true,
this.preloadPagesCount = 0,
}) : assert(allowImplicitScrolling != null),
assert(clipBehavior != null),
controller = controller ?? _defaultPageController,
childrenDelegate =
SliverChildBuilderDelegate(itemBuilder, childCount: itemCount),
super(key: key);