Instagram Page Indicator

Simple Page Indicator like Instagram written for Flutter

Made-with-flutter Pub version GitHub repo size License: MIT Discord


Demo

Usage

InstagramPageIndicator(
    itemCount: pages.length,
    controller: controller,
),

Customization

You can customize direction, size, spacing, color and more...

InstagramPageIndicator(
    itemCount: pages.length,
    controller: controller,
    dotSize: 11,
    dotSelectedSize: 15,
    dotSpacing: 20,
    dotColor: Colors.grey.shade300,
    dotSelectedColor: Colors.blueAccent.shade100,
    visibleDotCount: 5,
    visibleDotThreshold: 2,
    orientation: Axis.horizontal,
    reverse: false,
),

Credits

This project is based on scrolling_page_indicator. The main focus of this project is adding new features and make it accessible to everyone.