hyhing / flutter_page_indicator

Flutter PageView indicator,支持自动定义圆点样式。使用StreamBuilder刷新效率更高

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pageview_indicator_plugins

flutter pageview指示器。支持自定义指示器样式

用法

pubspec.yaml引入:

dependencies:
  pageview_indicator_plugins: ^0.0.2

基本用法:

PageIndicator(
    length: 6,
    pageController: pageController,
)

可以通过自定义Decoration属性修改圆点形状

PageIndicator(
    length: 6,
    pageController: secondController,
    currentWidth: 16,
    currentDecoration: BoxDecoration(
              color: Colors.cyanAccent,
              borderRadius: BorderRadius.circular(10)),
)

效果图

gif

About

Flutter PageView indicator,支持自动定义圆点样式。使用StreamBuilder刷新效率更高

License:Other


Languages

Language:Dart 67.9%Language:Kotlin 12.6%Language:Swift 8.0%Language:Ruby 7.0%Language:Objective-C 4.5%