FLUTTER ECOSYSTEM

dv-mahbub/stylish_pull_to_refresh

다양한 RefreshIndicator 애니메이션 스타일을 갖춘 새로운 Flutter 패키지 프로젝트입니다.

스타일리시한 풀투리프레시 프로젝트 이미지
Stars
2
Forks
0
최근 푸시(UTC)
2024. 11. 4.
프로젝트 상태
활성
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,