As can be seen from this snack, I embedded 2 identical animated gifs back to back.
The first one that loops for ever functions as expected.
But the second, the non-looping animated gif is lost when the application is sent to background and retrieved back to foreground.
Is there anything that can be done to avoid this?
import testAniGif from '../assets/test.gif';
import testAniGif2 from '../assets/test2.gif';
export default function AssetExample() {
return (
<View>
<Image style={styles.logo} source={testAniGif} />
<Image style={styles.logo} source={testAniGif2} />
</View>
);
}