On react-native v0.68.2 - works
On react-native v0.70.0 - not works
'Image' not showing avatar from Google-server for sign-in:
<Image style={{ width: 50, height: 50 }}
source={{ uri: 'https://lh3.googleusercontent.com/a-/AFdZuco5YkhulxjXcpR-YXEIQZ8r2uc0Ti0di-Bb_fzP=s96-c', }} />
But showing same avatar from another server:
<Image style={{ width: 50, height: 50 }}
source={{ uri: 'https://wordskills.ru/testAvatar.jpg' }} />
In the place where the avatar should be, - an empty space
The link to the avatar is standard from Google-sign-in, and obtained using '@react-native-google-signin/google-signin' (sample: 'https://lh3.googleusercontent.com/a-/AFdZuco5YkhulxjXcpR-YXEIQZ8r2uc0Ti0di-Bb_fzP=s96-c')
In search of a solution, I tried to use:
- Avatar from 'react-native-paper'
- Image from react-native
- Fresco
- react-native-fast-image
All solutions failed.
Any clue how to resolve this issue? Thanks!