I am using "react-native-svg-uri" library to load svg files from cloud.
consider the following snippet,
<SvgUri
width={wp("6%")}
height={wp("6%")}
source={{ uri: "https://wasfatimages.s3.ap-south-1.amazonaws.com/contain/vegetarian.svg" }}
/>
this particular SVG file URL is not working. But using the same URL, I can see the expected image in the browser.
consider the other SVG file URL below which is working with the same code very well.
"https://wasfatimages.s3.ap-south-1.amazonaws.com/contain/seafood.svg".
But the URL used in the above code snippet is loading the image in the browser. But with react native, the SVG URL is not loading. There is a blank space rendering while using the URL.
Thanks for any suggestions.