I would like to make a Carousel slider in flutter with lines (look at the image), but always finding with dots.
Thanks in advance
I would like to make a Carousel slider in flutter with lines (look at the image), but always finding with dots.
Thanks in advance
I found a solution with dots_indicator https://pub.dev/packages/dots_indicator
DotsIndicator(
dotsCount: length ?? 0,
position: currentIndexPage.toDouble(),
decorator: DotsDecorator(
spacing: EdgeInsets.only(left: 3, right: 3),
shape: Border(),
activeShape: Border(),
size: Size(
(width - 50) / length, 5),
activeSize: Size(
(width - 50) / length, 5),
color: Colores().blanco(opacity: 0.4),
activeColor: Colores().blanco()),
)