Does anyone know why <Image />
component with external(HTTPS) URL is not working correctly on Android?
I've tried to render avatar but Android just skip this <Image />
component like it does not exist.
<Image source={{
url: "https://yabs.yandex.ru/resource/B4_LwOqnl6akXYQRO4jj2R_banana_20141031_1.png",
}} style={{width: 148, height: 90}} />
I'm a newbie in RN and Andriod, thanks in advance.
Update:
the problem was with url
property. React Native uses uri
instead.