React-Native学习之 图片做背景 modal 点击其他区域消失

前端之家收集整理的这篇文章主要介绍了React-Native学习之 图片做背景 modal 点击其他区域消失前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. 1.modal点击其他区域消失
  1. <TouchableWithoutFeedback
  2. onPress={()=>this.setState({showTopMenu:false})}>
  3. <View style={{position: 'absolute',left: 0,right: 0,top: 0,bottom: 0,width: null,}}/>
  4. </TouchableWithoutFeedback>
  5.  
  1. 2.图片做背景
  1.  
  1. <Image style={styles.img}
  2. source={require('../image/IMG_0026.jpg')}
  3. resizeMode='cover' />
  1.  
  1.  
  1. img: {
  2. position: 'absolute', left: 0, right: 0, top: 0, bottom: 0, height: null, width: null,},

猜你在找的React相关文章