react-native webview loading indicator
I like this approach which shows the activity indicator overlayed on the loading Webview so you don’t have to wait until the entire page is loaded to start seeing content. constructor(props) { super(props); this.state = { visible: true }; } hideSpinner() { this.setState({ visible: false }); } render() { return ( <View style={{ flex: 1 … Read more