chilijung / react-native-carousel-view

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

Auto play carousel #8

Open fahadhaq opened 6 years ago

fahadhaq commented 6 years ago

Hi, I am trying to get eh carousel to autoplay but its not working. Here is what I have in my code

<View style={styles.container}>
                    <Carousel
                        width={320}
                        height={200}
                        delay={2000}
                        animate={true}
                        loop={true}
                        indicatorAtBottom={true}
                        indicatorSize={20}
                        indicatorText="✽"
                        indicatorColor="red"
                    >
                        {imageArray}
                    </Carousel>
                </View>

Not sure why its not animating. Can some one please help. thanks in advance