React Native webview redirect not working











up vote
0
down vote

favorite












I am building a react native app with webview inside.
My web, let's say https://exampleone.com, is a view with a button inside it. When user click the button, it will goes to https://exampleone.com/clicked. After succeed, it should redirect to https://exampletwoo.com, but nothing happen.



This is my code so far



<WebView
source={{uri: this.state.url_after}}
ref={c => {this.WebView = c;}}
onNavigationStateChange={this.navigationStateChangedHandler} />


And



navigationStateChangedHandler = ({url}) => {
console.log(url);
};


the log showed https://exampletwoo.com but nothing happen, webview still showing https://exampleone.com/clicked. How to achieve my goal?



Edit



Additional information



OS : Android & IoS, but for debugging I use Android



RN version : "0.57.1",



I am using Webview from community as React Native officially suggested https://github.com/react-native-community/react-native-webview with version "^2.5.0"



note :
Webview not showing the right page although the url already changed to https://exampletwoo.com



EDIT#2
I have tried to use https://exampletwoo.com directly to webview and it's showing nothing. So I guess, it is all because https://exampletwoo.com is using .xhtml.



Thanks in advance!










share|improve this question
























  • Please add here additional info: 1) OS (android or ios?) and 2) if you use the webview from RN or the external package maintained by community. Also add 3) the RN version you are using.
    – Florin Dobre
    2 days ago










  • @FlorinDobre I have edited my question
    – fajar ainul
    2 days ago















up vote
0
down vote

favorite












I am building a react native app with webview inside.
My web, let's say https://exampleone.com, is a view with a button inside it. When user click the button, it will goes to https://exampleone.com/clicked. After succeed, it should redirect to https://exampletwoo.com, but nothing happen.



This is my code so far



<WebView
source={{uri: this.state.url_after}}
ref={c => {this.WebView = c;}}
onNavigationStateChange={this.navigationStateChangedHandler} />


And



navigationStateChangedHandler = ({url}) => {
console.log(url);
};


the log showed https://exampletwoo.com but nothing happen, webview still showing https://exampleone.com/clicked. How to achieve my goal?



Edit



Additional information



OS : Android & IoS, but for debugging I use Android



RN version : "0.57.1",



I am using Webview from community as React Native officially suggested https://github.com/react-native-community/react-native-webview with version "^2.5.0"



note :
Webview not showing the right page although the url already changed to https://exampletwoo.com



EDIT#2
I have tried to use https://exampletwoo.com directly to webview and it's showing nothing. So I guess, it is all because https://exampletwoo.com is using .xhtml.



Thanks in advance!










share|improve this question
























  • Please add here additional info: 1) OS (android or ios?) and 2) if you use the webview from RN or the external package maintained by community. Also add 3) the RN version you are using.
    – Florin Dobre
    2 days ago










  • @FlorinDobre I have edited my question
    – fajar ainul
    2 days ago













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am building a react native app with webview inside.
My web, let's say https://exampleone.com, is a view with a button inside it. When user click the button, it will goes to https://exampleone.com/clicked. After succeed, it should redirect to https://exampletwoo.com, but nothing happen.



This is my code so far



<WebView
source={{uri: this.state.url_after}}
ref={c => {this.WebView = c;}}
onNavigationStateChange={this.navigationStateChangedHandler} />


And



navigationStateChangedHandler = ({url}) => {
console.log(url);
};


the log showed https://exampletwoo.com but nothing happen, webview still showing https://exampleone.com/clicked. How to achieve my goal?



Edit



Additional information



OS : Android & IoS, but for debugging I use Android



RN version : "0.57.1",



I am using Webview from community as React Native officially suggested https://github.com/react-native-community/react-native-webview with version "^2.5.0"



note :
Webview not showing the right page although the url already changed to https://exampletwoo.com



EDIT#2
I have tried to use https://exampletwoo.com directly to webview and it's showing nothing. So I guess, it is all because https://exampletwoo.com is using .xhtml.



Thanks in advance!










share|improve this question















I am building a react native app with webview inside.
My web, let's say https://exampleone.com, is a view with a button inside it. When user click the button, it will goes to https://exampleone.com/clicked. After succeed, it should redirect to https://exampletwoo.com, but nothing happen.



This is my code so far



<WebView
source={{uri: this.state.url_after}}
ref={c => {this.WebView = c;}}
onNavigationStateChange={this.navigationStateChangedHandler} />


And



navigationStateChangedHandler = ({url}) => {
console.log(url);
};


the log showed https://exampletwoo.com but nothing happen, webview still showing https://exampleone.com/clicked. How to achieve my goal?



Edit



Additional information



OS : Android & IoS, but for debugging I use Android



RN version : "0.57.1",



I am using Webview from community as React Native officially suggested https://github.com/react-native-community/react-native-webview with version "^2.5.0"



note :
Webview not showing the right page although the url already changed to https://exampletwoo.com



EDIT#2
I have tried to use https://exampletwoo.com directly to webview and it's showing nothing. So I guess, it is all because https://exampletwoo.com is using .xhtml.



Thanks in advance!







react-native webview url-redirection






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 6 hours ago

























asked Nov 16 at 14:04









fajar ainul

281312




281312












  • Please add here additional info: 1) OS (android or ios?) and 2) if you use the webview from RN or the external package maintained by community. Also add 3) the RN version you are using.
    – Florin Dobre
    2 days ago










  • @FlorinDobre I have edited my question
    – fajar ainul
    2 days ago


















  • Please add here additional info: 1) OS (android or ios?) and 2) if you use the webview from RN or the external package maintained by community. Also add 3) the RN version you are using.
    – Florin Dobre
    2 days ago










  • @FlorinDobre I have edited my question
    – fajar ainul
    2 days ago
















Please add here additional info: 1) OS (android or ios?) and 2) if you use the webview from RN or the external package maintained by community. Also add 3) the RN version you are using.
– Florin Dobre
2 days ago




Please add here additional info: 1) OS (android or ios?) and 2) if you use the webview from RN or the external package maintained by community. Also add 3) the RN version you are using.
– Florin Dobre
2 days ago












@FlorinDobre I have edited my question
– fajar ainul
2 days ago




@FlorinDobre I have edited my question
– fajar ainul
2 days ago












2 Answers
2






active

oldest

votes

















up vote
0
down vote













What about using manual reloading?



navigationStateChangedHandler = ({url}) => {
this.WebView.reload()
};





share|improve this answer





















  • Sorry for my slow response, since it is weekend. Thanks for your solution, but it is still not working. I think with this code, my webview will stack on https://exampleone.com/clicked
    – fajar ainul
    2 days ago












  • any other suggestion?
    – fajar ainul
    2 days ago


















up vote
0
down vote













import React, {Component} from 'react';
import {
StyleSheet,
Dimensions,
Platform,
WebView,
SafeAreaView,
} from 'react-native';

export default class App extends Component {
constructor(props) {
super(props);
this.webViewRef = null;
this.state = { currentUrl: '' }
// If the first url does the redirection I noticed webview might trigger some
// suspicious content error and might refuse it to load, you can try
// to add it here and check if it works, if not just change it in
// componentDidMount as below
}

componentDidMount() {
this.setState({ currentUrl: '<AD_THE_URL_THAT_DOES_THE_REDIRECTION_HERE'> })
}

onNavigationStateChange = (data) => {
const { url } = data;

this.setState({ currentUrl: url })

// !If you have other redirect urls when navigating you might want
// to trigger the above setState only if the url is NOT a redirection one,
// so you don't force a re-render for redirection urls!
}

render() {
if (!this.state.currentUrl) return null;
return (
<SafeAreaView style={[styles.container]}>
<WebView
ref={(element) => { this.webViewRef = element; }} // this can be used later for `onBack` and `reloads`
source={{ uri: this.state.currentUrl }}
onNavigationStateChange={this.onNavigationStateChange}
scalesPageToFit={true}
automaticallyAdjustContentInsets={true}
useWebKit={false}
startInLoadingState={true}
onError={(err)=>console.warn(err)}
onLoadStart={() => console.warn('started')}
onLoadEnd={() => console.warn('ended')}
scrollEnabled={true}
domStorageEnabled={true}
javaScriptEnabled={true}
style={styles.webView}
/>
</SafeAreaView>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
overflow: 'hidden',
},
webView: {
margin: 10,
flex: 0,
height: Dimensions.get('window').height,
},
});





share|improve this answer























  • thanks for your answer, logically your solution is almost solve my problem, but actually it is not. With your solution, my webview will call https://exampleone.com/clicked twice which is not good for my apps.
    – fajar ainul
    2 days ago










  • and still my apps stack on https://exampleone.com/clicked although url is already changes to https://exampletwoo.com
    – fajar ainul
    2 days ago










  • I edited my answer and added some missing info.
    – Florin Dobre
    yesterday










  • I also tried this way, navigationStateChangedHandler = ({url}) => { if (url.startsWith('exampletwoo.com')) { this.setState({ url_after : url }) } }; the state change successfully, but the page still won't showing the right page
    – fajar ainul
    yesterday












  • Don't change the state if that is a redirect url, just return the old state.
    – Florin Dobre
    yesterday











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53339394%2freact-native-webview-redirect-not-working%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote













What about using manual reloading?



navigationStateChangedHandler = ({url}) => {
this.WebView.reload()
};





share|improve this answer





















  • Sorry for my slow response, since it is weekend. Thanks for your solution, but it is still not working. I think with this code, my webview will stack on https://exampleone.com/clicked
    – fajar ainul
    2 days ago












  • any other suggestion?
    – fajar ainul
    2 days ago















up vote
0
down vote













What about using manual reloading?



navigationStateChangedHandler = ({url}) => {
this.WebView.reload()
};





share|improve this answer





















  • Sorry for my slow response, since it is weekend. Thanks for your solution, but it is still not working. I think with this code, my webview will stack on https://exampleone.com/clicked
    – fajar ainul
    2 days ago












  • any other suggestion?
    – fajar ainul
    2 days ago













up vote
0
down vote










up vote
0
down vote









What about using manual reloading?



navigationStateChangedHandler = ({url}) => {
this.WebView.reload()
};





share|improve this answer












What about using manual reloading?



navigationStateChangedHandler = ({url}) => {
this.WebView.reload()
};






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 16 at 14:12









Łukasz Blaszyński

12




12












  • Sorry for my slow response, since it is weekend. Thanks for your solution, but it is still not working. I think with this code, my webview will stack on https://exampleone.com/clicked
    – fajar ainul
    2 days ago












  • any other suggestion?
    – fajar ainul
    2 days ago


















  • Sorry for my slow response, since it is weekend. Thanks for your solution, but it is still not working. I think with this code, my webview will stack on https://exampleone.com/clicked
    – fajar ainul
    2 days ago












  • any other suggestion?
    – fajar ainul
    2 days ago
















Sorry for my slow response, since it is weekend. Thanks for your solution, but it is still not working. I think with this code, my webview will stack on https://exampleone.com/clicked
– fajar ainul
2 days ago






Sorry for my slow response, since it is weekend. Thanks for your solution, but it is still not working. I think with this code, my webview will stack on https://exampleone.com/clicked
– fajar ainul
2 days ago














any other suggestion?
– fajar ainul
2 days ago




any other suggestion?
– fajar ainul
2 days ago












up vote
0
down vote













import React, {Component} from 'react';
import {
StyleSheet,
Dimensions,
Platform,
WebView,
SafeAreaView,
} from 'react-native';

export default class App extends Component {
constructor(props) {
super(props);
this.webViewRef = null;
this.state = { currentUrl: '' }
// If the first url does the redirection I noticed webview might trigger some
// suspicious content error and might refuse it to load, you can try
// to add it here and check if it works, if not just change it in
// componentDidMount as below
}

componentDidMount() {
this.setState({ currentUrl: '<AD_THE_URL_THAT_DOES_THE_REDIRECTION_HERE'> })
}

onNavigationStateChange = (data) => {
const { url } = data;

this.setState({ currentUrl: url })

// !If you have other redirect urls when navigating you might want
// to trigger the above setState only if the url is NOT a redirection one,
// so you don't force a re-render for redirection urls!
}

render() {
if (!this.state.currentUrl) return null;
return (
<SafeAreaView style={[styles.container]}>
<WebView
ref={(element) => { this.webViewRef = element; }} // this can be used later for `onBack` and `reloads`
source={{ uri: this.state.currentUrl }}
onNavigationStateChange={this.onNavigationStateChange}
scalesPageToFit={true}
automaticallyAdjustContentInsets={true}
useWebKit={false}
startInLoadingState={true}
onError={(err)=>console.warn(err)}
onLoadStart={() => console.warn('started')}
onLoadEnd={() => console.warn('ended')}
scrollEnabled={true}
domStorageEnabled={true}
javaScriptEnabled={true}
style={styles.webView}
/>
</SafeAreaView>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
overflow: 'hidden',
},
webView: {
margin: 10,
flex: 0,
height: Dimensions.get('window').height,
},
});





share|improve this answer























  • thanks for your answer, logically your solution is almost solve my problem, but actually it is not. With your solution, my webview will call https://exampleone.com/clicked twice which is not good for my apps.
    – fajar ainul
    2 days ago










  • and still my apps stack on https://exampleone.com/clicked although url is already changes to https://exampletwoo.com
    – fajar ainul
    2 days ago










  • I edited my answer and added some missing info.
    – Florin Dobre
    yesterday










  • I also tried this way, navigationStateChangedHandler = ({url}) => { if (url.startsWith('exampletwoo.com')) { this.setState({ url_after : url }) } }; the state change successfully, but the page still won't showing the right page
    – fajar ainul
    yesterday












  • Don't change the state if that is a redirect url, just return the old state.
    – Florin Dobre
    yesterday















up vote
0
down vote













import React, {Component} from 'react';
import {
StyleSheet,
Dimensions,
Platform,
WebView,
SafeAreaView,
} from 'react-native';

export default class App extends Component {
constructor(props) {
super(props);
this.webViewRef = null;
this.state = { currentUrl: '' }
// If the first url does the redirection I noticed webview might trigger some
// suspicious content error and might refuse it to load, you can try
// to add it here and check if it works, if not just change it in
// componentDidMount as below
}

componentDidMount() {
this.setState({ currentUrl: '<AD_THE_URL_THAT_DOES_THE_REDIRECTION_HERE'> })
}

onNavigationStateChange = (data) => {
const { url } = data;

this.setState({ currentUrl: url })

// !If you have other redirect urls when navigating you might want
// to trigger the above setState only if the url is NOT a redirection one,
// so you don't force a re-render for redirection urls!
}

render() {
if (!this.state.currentUrl) return null;
return (
<SafeAreaView style={[styles.container]}>
<WebView
ref={(element) => { this.webViewRef = element; }} // this can be used later for `onBack` and `reloads`
source={{ uri: this.state.currentUrl }}
onNavigationStateChange={this.onNavigationStateChange}
scalesPageToFit={true}
automaticallyAdjustContentInsets={true}
useWebKit={false}
startInLoadingState={true}
onError={(err)=>console.warn(err)}
onLoadStart={() => console.warn('started')}
onLoadEnd={() => console.warn('ended')}
scrollEnabled={true}
domStorageEnabled={true}
javaScriptEnabled={true}
style={styles.webView}
/>
</SafeAreaView>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
overflow: 'hidden',
},
webView: {
margin: 10,
flex: 0,
height: Dimensions.get('window').height,
},
});





share|improve this answer























  • thanks for your answer, logically your solution is almost solve my problem, but actually it is not. With your solution, my webview will call https://exampleone.com/clicked twice which is not good for my apps.
    – fajar ainul
    2 days ago










  • and still my apps stack on https://exampleone.com/clicked although url is already changes to https://exampletwoo.com
    – fajar ainul
    2 days ago










  • I edited my answer and added some missing info.
    – Florin Dobre
    yesterday










  • I also tried this way, navigationStateChangedHandler = ({url}) => { if (url.startsWith('exampletwoo.com')) { this.setState({ url_after : url }) } }; the state change successfully, but the page still won't showing the right page
    – fajar ainul
    yesterday












  • Don't change the state if that is a redirect url, just return the old state.
    – Florin Dobre
    yesterday













up vote
0
down vote










up vote
0
down vote









import React, {Component} from 'react';
import {
StyleSheet,
Dimensions,
Platform,
WebView,
SafeAreaView,
} from 'react-native';

export default class App extends Component {
constructor(props) {
super(props);
this.webViewRef = null;
this.state = { currentUrl: '' }
// If the first url does the redirection I noticed webview might trigger some
// suspicious content error and might refuse it to load, you can try
// to add it here and check if it works, if not just change it in
// componentDidMount as below
}

componentDidMount() {
this.setState({ currentUrl: '<AD_THE_URL_THAT_DOES_THE_REDIRECTION_HERE'> })
}

onNavigationStateChange = (data) => {
const { url } = data;

this.setState({ currentUrl: url })

// !If you have other redirect urls when navigating you might want
// to trigger the above setState only if the url is NOT a redirection one,
// so you don't force a re-render for redirection urls!
}

render() {
if (!this.state.currentUrl) return null;
return (
<SafeAreaView style={[styles.container]}>
<WebView
ref={(element) => { this.webViewRef = element; }} // this can be used later for `onBack` and `reloads`
source={{ uri: this.state.currentUrl }}
onNavigationStateChange={this.onNavigationStateChange}
scalesPageToFit={true}
automaticallyAdjustContentInsets={true}
useWebKit={false}
startInLoadingState={true}
onError={(err)=>console.warn(err)}
onLoadStart={() => console.warn('started')}
onLoadEnd={() => console.warn('ended')}
scrollEnabled={true}
domStorageEnabled={true}
javaScriptEnabled={true}
style={styles.webView}
/>
</SafeAreaView>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
overflow: 'hidden',
},
webView: {
margin: 10,
flex: 0,
height: Dimensions.get('window').height,
},
});





share|improve this answer














import React, {Component} from 'react';
import {
StyleSheet,
Dimensions,
Platform,
WebView,
SafeAreaView,
} from 'react-native';

export default class App extends Component {
constructor(props) {
super(props);
this.webViewRef = null;
this.state = { currentUrl: '' }
// If the first url does the redirection I noticed webview might trigger some
// suspicious content error and might refuse it to load, you can try
// to add it here and check if it works, if not just change it in
// componentDidMount as below
}

componentDidMount() {
this.setState({ currentUrl: '<AD_THE_URL_THAT_DOES_THE_REDIRECTION_HERE'> })
}

onNavigationStateChange = (data) => {
const { url } = data;

this.setState({ currentUrl: url })

// !If you have other redirect urls when navigating you might want
// to trigger the above setState only if the url is NOT a redirection one,
// so you don't force a re-render for redirection urls!
}

render() {
if (!this.state.currentUrl) return null;
return (
<SafeAreaView style={[styles.container]}>
<WebView
ref={(element) => { this.webViewRef = element; }} // this can be used later for `onBack` and `reloads`
source={{ uri: this.state.currentUrl }}
onNavigationStateChange={this.onNavigationStateChange}
scalesPageToFit={true}
automaticallyAdjustContentInsets={true}
useWebKit={false}
startInLoadingState={true}
onError={(err)=>console.warn(err)}
onLoadStart={() => console.warn('started')}
onLoadEnd={() => console.warn('ended')}
scrollEnabled={true}
domStorageEnabled={true}
javaScriptEnabled={true}
style={styles.webView}
/>
</SafeAreaView>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
overflow: 'hidden',
},
webView: {
margin: 10,
flex: 0,
height: Dimensions.get('window').height,
},
});






share|improve this answer














share|improve this answer



share|improve this answer








edited 42 mins ago

























answered Nov 16 at 15:20









Florin Dobre

3,60412540




3,60412540












  • thanks for your answer, logically your solution is almost solve my problem, but actually it is not. With your solution, my webview will call https://exampleone.com/clicked twice which is not good for my apps.
    – fajar ainul
    2 days ago










  • and still my apps stack on https://exampleone.com/clicked although url is already changes to https://exampletwoo.com
    – fajar ainul
    2 days ago










  • I edited my answer and added some missing info.
    – Florin Dobre
    yesterday










  • I also tried this way, navigationStateChangedHandler = ({url}) => { if (url.startsWith('exampletwoo.com')) { this.setState({ url_after : url }) } }; the state change successfully, but the page still won't showing the right page
    – fajar ainul
    yesterday












  • Don't change the state if that is a redirect url, just return the old state.
    – Florin Dobre
    yesterday


















  • thanks for your answer, logically your solution is almost solve my problem, but actually it is not. With your solution, my webview will call https://exampleone.com/clicked twice which is not good for my apps.
    – fajar ainul
    2 days ago










  • and still my apps stack on https://exampleone.com/clicked although url is already changes to https://exampletwoo.com
    – fajar ainul
    2 days ago










  • I edited my answer and added some missing info.
    – Florin Dobre
    yesterday










  • I also tried this way, navigationStateChangedHandler = ({url}) => { if (url.startsWith('exampletwoo.com')) { this.setState({ url_after : url }) } }; the state change successfully, but the page still won't showing the right page
    – fajar ainul
    yesterday












  • Don't change the state if that is a redirect url, just return the old state.
    – Florin Dobre
    yesterday
















thanks for your answer, logically your solution is almost solve my problem, but actually it is not. With your solution, my webview will call https://exampleone.com/clicked twice which is not good for my apps.
– fajar ainul
2 days ago




thanks for your answer, logically your solution is almost solve my problem, but actually it is not. With your solution, my webview will call https://exampleone.com/clicked twice which is not good for my apps.
– fajar ainul
2 days ago












and still my apps stack on https://exampleone.com/clicked although url is already changes to https://exampletwoo.com
– fajar ainul
2 days ago




and still my apps stack on https://exampleone.com/clicked although url is already changes to https://exampletwoo.com
– fajar ainul
2 days ago












I edited my answer and added some missing info.
– Florin Dobre
yesterday




I edited my answer and added some missing info.
– Florin Dobre
yesterday












I also tried this way, navigationStateChangedHandler = ({url}) => { if (url.startsWith('exampletwoo.com')) { this.setState({ url_after : url }) } }; the state change successfully, but the page still won't showing the right page
– fajar ainul
yesterday






I also tried this way, navigationStateChangedHandler = ({url}) => { if (url.startsWith('exampletwoo.com')) { this.setState({ url_after : url }) } }; the state change successfully, but the page still won't showing the right page
– fajar ainul
yesterday














Don't change the state if that is a redirect url, just return the old state.
– Florin Dobre
yesterday




Don't change the state if that is a redirect url, just return the old state.
– Florin Dobre
yesterday


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53339394%2freact-native-webview-redirect-not-working%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

ts Property 'filter' does not exist on type '{}'

mat-slide-toggle shouldn't change it's state when I click cancel in confirmation window