Reputation: 21
I have a task, and i need to build like this dots. can anyone help me?
i try use alot of packeges but i didn't get the same result of pictures
Upvotes: 0
Views: 145
Reputation: 2060
You can use SmoothPageIndicator package and this code to implement something like your pictures:
SmoothPageIndicator(
controller: controller, //pass your page controller
count: 3,
effect: ExpandingDotsEffect(
activeDotColor: Colors.yellow[800]!,
dotWidth: 6,
dotHeight: 6,
expansionFactor: 5,
dotColor: Colors.grey),
),
Upvotes: 0