Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

flutter get carousel sliders current index

CarouselSlider(
   ...
  options: CarouselOptions(
  	onPageChanged: (index, reason) {
      setState(() {
      	_currentIndex = index; //<-- Page index
      });
  	},
  ),
  items: ... ,
),
 
PREVIOUS NEXT
Tagged: #flutter #carousel #sliders #current #index
ADD COMMENT
Topic
Name
5+2 =