Flutter Get Carrousel Sliders Index Current
CarouselSlider(
...
options: CarouselOptions(
onPageChanged: (index, reason) {
setState(() {
_currentIndex = index; //<-- Page index
});
},
),
items: ... ,
),
Lazurite