如何设置全屏图像内模态,支持所有不同的屏幕设备和平板电脑没有上浆图像在React原生?
<Modal
animationType="fade"
visible={props.isOpen}
onRequestClose={props.onCloseModal}>
<SafeAreaView style={{ flex: 1, backgroundColor: 'white' }}>
<View style={{flex: 1}>
<Image source={"path/to/local/image"} resizeMode='stretch' style={imageStyle}/>
</View>
</SafeAreaView>
</Modal>
1条答案
按热度按时间k2fxgqgv1#
使用
cover
作为图像中的resizeMode。