lucasferreira / react-native-webview-android

Simple React Native Android module to use Android's WebView inside your app
355 stars 158 forks source link

Manually replace WebView URL isn't working #101

Closed AlexTr closed 6 years ago

AlexTr commented 6 years ago

I've used the following code to make WebView to load custom URL upon state.url change, but it isn't working:

    render() {
        let url = this.state.url;
        return (
            <Container>
                <WebViewAndroid url={url} />
            </Container>
        );
    }

The same approach working fine with default WebView.

AlexTr commented 6 years ago

Sorry, my fault