best-flutter/flutter_page_indicator
Flutter用ページインジケータ、複数の組み込みレイアウトを備えています。
- Stars
- 173
- Forks
- 76
- 最終プッシュ(UTC)
- 2021/05/02
- プロジェクト状態
- 公開中
言語DartObjective-CJava
使用している依存関係
依存関係一覧 2 件
- flutter
{"sdk":"flutter"} - flutter_test開発用
{"sdk":"flutter"}
元の README
以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
README を開く / 閉じる
flutter_page_indicator
Page indicator for flutter, with multiple build-in layouts.
Show cases
showcases
Installation
Add
flutter_page_indicator:
to your pubspec.yaml ,and run
flutter packages get
in your project's root directory.
Basic Usage
new PageIndicator(
layout: PageIndicatorLayout.SLIDE,
size: 20.0,
controller: YOUR_PAGE_CONTROLLER,
space: 5.0,
count: 4,
)
All build-in layouts
| Layout | Showcase | Support version |
|---|---|---|
| PageIndicatorLayout.NONE | https://raw.githubusercontent.com/jzoom/images/master/indicator1.gif | From 0.0.1 |
| PageIndicatorLayout.SLIDE | https://raw.githubusercontent.com/jzoom/images/master/indicator2.gif | From 0.0.1 |
| PageIndicatorLayout.WARM | https://raw.githubusercontent.com/jzoom/images/master/warm.gif | From 0.0.1 |
| PageIndicatorLayout.COLOR | https://raw.githubusercontent.com/jzoom/images/master/indicator4.gif | From 0.0.1 |
| PageIndicatorLayout.SCALE | https://raw.githubusercontent.com/jzoom/images/master/indicator5.gif | From 0.0.1 |
| PageIndicatorLayout.DROP | https://raw.githubusercontent.com/jzoom/images/master/indicator7.gif | From 0.0.1 |