npm i --save @wecraftapps/react-native-simple-carousel
import { SimpleCarousel } from '@wecraftapps/react-native-simple-carousel';
...
const carouselRef = useRef(null);
...
return (
<SimpleCarousel ref={carouselRef}>
<View style={{ width: '100%', height: '100%', justifyContent: 'center', alignItems: 'center', backgroundColor: 'yellow'}}>
<Text>PAGE 0</Text>
</View>
<View style={{ width: '100%', height: '100%', justifyContent: 'center', alignItems: 'center', backgroundColor: 'green'}}>
<Text>PAGE 1</Text>
</View>
</SimpleCarousel>
);