问题
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,
},
});