infinite card style carousel for react-native project
npm install react-native-card-carousel --save
import CarouselCard from 'react-native-card-carousel'
<CarouselCard
height={250}
autoplay
interval={4000}
data={itemArr}
onPress={item => {}}
contentRender={item => <CustomView item = {item} />}
/>