droibit / react-native-custom-tabs

Chrome Custom Tabs for React Native.
https://www.npmjs.com/package/react-native-custom-tabs
Apache License 2.0
187 stars 108 forks source link

Navigation is blocked #63

Open shahbazmancho opened 4 years ago

shahbazmancho commented 4 years ago

I am calling redirect on API response. here is the URL and I'm using deep-link to check the status. 'manysolutions://home/success?order_id=12342' chrome is blocking the navigation

function redirect(uri) { console.log('redirect'); console.log(uri); if(navigator.userAgent.match(/Android/i)) document.location=uri; else window.location.replace(uri); }