preload_page_view 0.1.4 copy "preload_page_view: ^0.1.4" to clipboard
preload_page_view: ^0.1.4 copied to clipboard

outdated

A pre-load PageView widget which you can use it to preload one page before and after current page.

PreloadPageView #

Like the name, this is the widget to support Pre-load function for PageView widget.

For better user experience sometimes we need pre-load the images/web requests before user really scrolled to next PageView but the official PageView don't support that.So this is the time to use PreloadPageView.

Usage #

Everything is similar like PageView, you need PreloadPageView.builder and PreloadPageController to create the PreloadPageView.

Also you can use preloadPagesCount to set preload pages count when you need.

Example #

  @override
  Widget build(BuildContext context) {
    return new PreloadPageView.builder(
      itemCount: ...,
      itemBuilder: ...,
      onPageChanged: (int position) {...},
      .....
      preloadPagesCount: 3,
      controller: PreloadPageController(),
    );
  }
264
likes
0
pub points
97%
popularity

Publisher

unverified uploader

A pre-load PageView widget which you can use it to preload one page before and after current page.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on preload_page_view