chilijung / react-native-carousel-view

react-native carousel, support in both Android and iOS
73 stars 44 forks source link

How to stop autoplay of carousel? #16

Closed fazeelzama20 closed 6 years ago

fazeelzama20 commented 6 years ago

I am using this library. And it is running good. But i want to stop autoplay of carousel.

`<Carousel width={width(100)} height={height(50)} delay={6000} indicatorAtBottom={true} indicatorSize={15} indicatorText="o" indicatorColor="#3b5998"

` I tried delay={6000000} I mean i have inserted very long value but it gives me warning that timer will keep awake. screen shot 2018-03-29 at 3 37 46 pm

Any help?

fazeelzama20 commented 6 years ago

we can use animate prop of library. Closing this issue.
`<Carousel width={width(100)} height={height(50)} animate={false} indicatorAtBottom={true} indicatorSize={15} indicatorColor="#3b5998"

`