You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to handle the opening of URLs from the Adapty paywall myself (I want them to open in the in-app browser rather than the system browser), but cannot block the default handler. I have tried returning false/void in the onUrlPress event listener, but that doesn't work. Is there a way to do this? If not, can it be implemented?
onUrlPress(url) {
// ideally we would open URL in the in-app browser
// but could not find a way of blocking Adapty's URL handling
WebBrowser.openBrowserAsync(url);
},
The text was updated successfully, but these errors were encountered:
I want to handle the opening of URLs from the Adapty paywall myself (I want them to open in the in-app browser rather than the system browser), but cannot block the default handler. I have tried returning false/void in the
onUrlPress
event listener, but that doesn't work. Is there a way to do this? If not, can it be implemented?package.json
onUrlPress Listener
The text was updated successfully, but these errors were encountered: