PageAutoScrollController constructor
PageAutoScrollController({
- int initialPage = 0,
- bool keepPage = true,
- double viewportFraction = 1.0,
- double? suggestedRowHeight,
- ViewportBoundaryGetter viewportBoundaryGetter = defaultViewportBoundaryGetter,
- AutoScrollController? copyTagsFrom,
- String? debugLabel,
Implementation
PageAutoScrollController(
{int initialPage: 0,
bool keepPage: true,
double viewportFraction: 1.0,
this.suggestedRowHeight,
this.viewportBoundaryGetter: defaultViewportBoundaryGetter,
AutoScrollController? copyTagsFrom,
String? debugLabel})
: super(
initialPage: initialPage,
keepPage: keepPage,
viewportFraction: viewportFraction) {
if (copyTagsFrom != null) tagMap.addAll(copyTagsFrom.tagMap);
}