react-native-swipe与滑动组件共用时图片无法显示

解决办法是设置setTimeout

componentDidMount() {

setTimeout(()=>{

this.setState({

swiperShow:true

});

},0)

}

 

{

this.state.swiperShow &&

height={150}

width={width}

// showsButtons={true}

autoplay={true}

showsPagination={true}

horizontal={true}

loop={true}

autoplayTimeout={2}

dotStyle={styles.dotStyle}

activeDotStyle={styles.activeDotStyle}

removeClippedSubviews={false}

paginationStyle={{ bottom: 5 }}

>

}

你可能感兴趣的:(react-native)