Erich Behrens
Erich Behrens
Hi @mario-naether, thanks for your contribution. The dots feature consists of 2 parts: showing the dots (the part you implemented) and making them clickable. There's a `goTo` function which can...
Thank you @Skona27 ! The project is configured to use eslint. AFAIK prettier should be able to pick up eslint settings, but I have to admit I stopped using it...
Hi @sandranguyen , the `goTo` function currently supports navigating to the previous or next slide only. To implement a fully working dots feature it would require a few more changes....
Hi @EshaanSharma711 , this feature is not currently implemented, but you can achieve the same result by using an external timer to change the slide: https://codesandbox.io/s/jj8354qvxw
Hi @shaefer, thanks for using the slider and contributing! Glad to hear it covers your core requirements for such component. Some of them are among the reasons I started this...
Another way of controlling the slide index - if you don't need animations - is to rerender the component changing it's `slideIndex` prop from the parent or context. This would...