I noticed that, when I run the react-native
app, the images that I set as background using the tag <ImageBackground>
load with a delay of almost 2 seconds, even if they are not heavy images (~100K) and they are stored in local.
I have also read this answer but it didn't solve my problem.
This is my simple code for insert an image as background:
<ImageBackground source={require('../images/ScanQR.png')} style={styles.backgroundImage}>
<Text style={styles.domanda}>
Example text
</Text>
</ImageBackground>