femioladeji / react-slideshow

A react component for slideshow supporting slide, fade and zoom
https://react-slideshow-image.netlify.app/
MIT License
359 stars 71 forks source link

React Slideshow Get Active Slide Index #228

Closed danaabhi closed 2 months ago

danaabhi commented 2 months ago

How to get the active slide index of react slide show

danaabhi commented 2 months ago

I figure it out by using following

const [activeIndex , setActiveIndex] = useState(0);
<Slide 
onChange={(fromIndex , toIndex)=> {
  setActiveIndex(toIndex);
}}
></Slide>