i am using react-native-image-cache-hoc & Blob
const CacheableImage = imageCacheHoc(Image, {
fileHostWhitelist: ['firebasestorage.googleapis.com']
});
and render
<CacheableImage style={styles.image} source={{ uri: this.props.uri }} permanent={false} />
this.props.uri :
* Then Error : props.source.uri should be a web accessible url with a valid protocol and host. NOTE: Default valid protocol is https, default valid hosts are .
Could you help me, please ? Thank you.