react-native-image-progress
react-native-image-progress copied to clipboard
state is not updating in react native
I can't understand what the hell is happening with this state . It is not updating .
` this.setState({imgLink: data.items[0].snippet.thumbnails.default.url});
console.log(this.state.imgLink);
`
I have already tried by using callback also but then also it is not updating in render method.
this.setState({imgLink: data.items[0].snippet.thumbnails.default.url}, () => { console.log(this.state.imgLink); });