import React, { Component } from "react"; import { StyleSheet, View, Image } from "react-native"; import Swiper from "react-native-swiper"; export default class Swipers extends Component { render() { return ( ); } } const styles = StyleSheet.create({ content: { width: '100%', backgroundColor: "#fff", marginTop: 5, padding: 10 }, Carousel: { width: '100%', height: 153, borderRadius: 10, overflow: 'hidden' }, wrapper: { width: '100%' }, slide: { width: '100%', height: 153, justifyContent: 'center', alignItems: 'center' }, img: { width: "100%", height: "100%" } });