FLUTTER ECOSYSTEM

best-flutter/flutter_page_indicator

Page indicator for flutter, with multiple build-in layouts.

flutter_page_indicator project cover
Stars
173
Forks
76
Last push (UTC)
May 2, 2021
Project status
Active
best-flutter GitHub avatar
GITHUB Organization

best-flutter ↗

China
LanguagesDartObjective-CJava

Dependencies used

Dependency list 2 items
  • flutter{"sdk":"flutter"}
  • flutter_testDevelopment{"sdk":"flutter"}

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

pub package

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