react-native-looped-carousel icon indicating copy to clipboard operation
react-native-looped-carousel copied to clipboard

How to render Images in carousel?

Open ElangoPrince opened this issue 6 years ago • 0 comments

The code which i done is : <Carousel delay={2000} autoplay pageInfo style onAnimateNextPage={(p) => console.log(p)} > <Image source={logo} style={{Width, Height}} /> <View style={{backgroundColor: 'blue',width: 100, height: 150 }}> <Text>1</Text> </View> <View style={{height: 100, backgroundColor: 'red'}}> <Image source={logo}></Image> <Text>2</Text> </View> <View style={{height: 100 , backgroundColor: '#BADA55'}}> <Image source={logo}></Image> <Text>3</Text> </View> </Carousel>

ElangoPrince avatar Sep 20 '18 15:09 ElangoPrince