我对如何使全屏图像横向定向很有趣,但是没有高度:100%,所以宽度将是100%,但是高度是多少,因为在反应本机高度时:不起作用=
答案 0 :(得分:0)
尝试这样
<View style={{ flexDirection: 'row',}}>
<Image
style={{
flex: 1,
width: null,
height: '100%',
overflow: 'hidden',
}}
resizeMode='contain'
source={{ uri: 'image path' }}
/>
答案 1 :(得分:0)