Does React Native only provides image caching support on iOS.
https://facebook.github.io/react-native/docs/images.html#cache-control-ios-only
<Image
source={{
uri: 'some url',
cache: 'only-if-cached',
}}
style={{width: 200, height: 200}}
/>
I checked above code with Android 7 device and its working.
Looking for advice/confirmation on whether this works n both iOS and Android.
Is it is a permanent disk cache?
Thank You