【发布时间】:2019-08-20 15:17:57
【问题描述】:
我注意到,当我运行 react-native 应用程序时,我使用标签 <ImageBackground> 设置为背景的图像加载延迟近 2 秒,即使它们不是重图像 (~100K) 和它们存储在本地。
我也阅读了this answer,但它并没有解决我的问题。
这是我插入图片作为背景的简单代码:
<ImageBackground source={require('../images/ScanQR.png')} style={styles.backgroundImage}>
<Text style={styles.domanda}>
Example text
</Text>
</ImageBackground>
【问题讨论】:
标签: react-native imagebackground delay-load