FLUTTER ECOSYSTEM

octomato/preload_page_view

Flutter プリロード PageView ウィジェット

preload_page_view のプロジェクト画像
Stars
182
Forks
55
最終プッシュ(UTC)
2023/09/27
プロジェクト状態
公開中
Neil GitHub avatar
GITHUB User

Neil ↗

Hooray!

言語DartObjective-C

使用している依存関係

依存関係一覧 2 件
  • flutter{"sdk":"flutter"}
  • flutter_test開発用{"sdk":"flutter"}

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

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(),
    );
  }

If you found any issue in the newest beta version, please try stable version [0.1.4]. Please give us a star if you like this widget. Your star could help us update or fix bugs quickly.