/* * @param: * autoPlay: 是否自动播放; * loop: 是否循环,无缝滚动 * ifShowMiddle: 轮播图是否从中间的索引开始 * @todo: 首页轮播图和主题适用 */ import React, { Component } from "react"; import { StyleSheet, View, Image } from "react-native"; import Dimensions from '../utils/dimensions'; import Swiper from "react-native-swiper"; const dotRegular = ; const dotActive = ; export default class Swipers extends Component { render() { return ( ); } } const styles = StyleSheet.create({ wrapper: { // flex: 1, }, slide: { width: 352, height: 153, marginHorizontal: 3, }, img: { width: 352, height: 153, borderRadius: 10, } });