I'd like to display an image in a React Native app from 'cdn.weatherapi.com/weather/64x64/day/116.png'
this is what I'm trying at the moment but it isn't working:
<Image
style={styles.image}
source={{ uri: 'cdn.weatherapi.com/weather/64x64/day/116.png' }}
/>
This code works with other images like 'https://simgbb.com/images/logo.png' for instance. Also, 'cdn.weatherapi.com/weather/64x64/day/116.png' works in a browser, so the image does exist.
thanks for the help