Ismail Interface
Ismail Interface

Reputation: 563

(Flutter) Customize Dots Indicator and Animation in PageView

Customize Dots indicator like this enter image description here

I want to be able to customize dots as shown, and give a little animation

Upvotes: 1

Views: 12307

Answers (1)

AskNilesh
AskNilesh

Reputation: 69709

You can use smooth_page_indicator

How to use

First, add smooth_page_indicator package in your pubspec.yaml file:

Now install smooth_page_indicator package

now use import 'package:smooth_page_indicator/smooth_page_indicator.dart'; in your dart file

You can find a complete example here smooth_page_indicator

Upvotes: 8

Related Questions