React NativeiOS开发iOS Developer

React-Native怎样让图片占满屏幕

2017-09-04  本文已影响42人  踏云小子

问题

rn里Image不能像css那样width:100%,必须制定一个宽度,但是各种移动设备不同的屏幕宽度,法克,怎么破

解决方法

先通过Dimensions难拿到屏幕宽度,然后在style直接使用,举个栗子:

<Image resizeMode={'cover'} style={[styles.header_top_wrap_img]} source={require('../logo.png')}/>

//style
const win = Dimensions.get('window');

const styles = StyleSheet.create({
header_top_wrap_img: {
    width: win.width,
    height: 269,
  },
});
上一篇下一篇

猜你喜欢

热点阅读