how to reload webview in react native

Solutions on MaxInterview for how to reload webview in react native by the best coders in the world

showing results for - "how to reload webview in react native"
Lennart
07 Sep 2017
1You can set a key to the webview
2
3key={this.state.key}
4and then you can reload it by updating the state
5
6this.setState({ key: this.state.key + 1 });