如何设置全屏图像模式内没有上浆图像在React原生?

4si2a6ki  于 2023-02-05  发布在  React
关注(0)|答案(1)|浏览(136)

如何设置全屏图像内模态,支持所有不同的屏幕设备和平板电脑没有上浆图像在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>
k2fxgqgv

k2fxgqgv1#

使用cover作为图像中的resizeMode。

<Modal
...
  >
  <Image
    resizeMode="cover"
    style={{width: '100%', height: '100%'}}
    source={{
      uri: 'https://reactnative.dev/img/tiny_logo.png',
    }}
  />
</Modal>

相关问题