FLUTTER ECOSYSTEM

dv-mahbub/stylish_pull_to_refresh

複数のRefreshIndicatorアニメーションスタイルを備えた新しいFlutterパッケージプロジェクト。

スタイリッシュなプルトゥリフレッシュ のプロジェクト画像
Stars
2
Forks
0
最終プッシュ(UTC)
2024/11/04
プロジェクト状態
公開中
Mahbub Al Hasan GitHub avatar
GITHUB User

Mahbub Al Hasan ↗

Uttara, Dhaka, Bangladesh
言語DartC++CMakeSwiftHTMLCKotlinObjective-C

このリポジトリが公開するパッケージ

使用している依存関係

依存関係一覧 3 件
  • flutter{"sdk":"flutter"}
  • flutter_test開発用{"sdk":"flutter"}
  • flutter_lints開発用^4.0.0

元の README

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

README を開く / 閉じる

stylish_pull_to_refresh

This is a flutter package with multiple animated style of RefreshIndicator. Use this to achive "pull to refresh" function in your project.

Code Example

Simple code example to use this project feature

  StylishPullToRefresh(
        style: Style.sandTimer, //multiple style available, pick your favourite one
        onRefresh: () async {
          //add code to execute on refresh
        },
        child: SingleChildScrollView(...) //pass child widget tree here
    )

Demo

demo1

demo2

demo3

Avaiable styles

Here are avaiable style list you could apply

style: Style.audioWave,
style: Style.box,
style: Style.circularProgress,
style: Style.fileSearch,
style: Style.game,
style: Style.handGesture,
style: Style.loop,
style: Style.paperPlane,
style: Style.sandTimer,
style: Style.threeCircle,