scrolling page indicator
With the useful functions of scrolling, it is always used in any design. For example, an infinite scroll creates a linear structure that storytellers can leverage. As the reader scrolls the page, different layouts can be paired with subtle animation effects to build a rhythm that gets the user wondering “what will happen next.” One good example of this is Instagram, where the infinite scroll enhances the story (can be posted 10 posts in a post).
View page indicator like Instagram.

Getting Started
- Dependency
dependencies:
scrolling_page_indicator: ^0.1.2
- Install
flutter packages get
- Import
import 'package:scrolling_page_indicator/scrolling_page_indicator.dart';
- Use
ScrollingPageIndicator(
dotColor: Colors.grey,
dotSelectedColor: Colors.deepPurple,
dotSize: 6,
dotSelectedSize: 8,
dotSpacing: 12,
controller: _controller,
itemCount: items.length,
orientation: Axis.horizontal
)
GitHub
https://github.com/NikitaZhelonkin/FlutterScrollingPageIndicator