I'm using Xamarin.Forms' Webview component, which does the trick for me most of the time, but there are limitations. I'm unable to detect the following navigation events.
window.open()
Links with a _blank target
Basically all links or locations that would normally open a new tab or window.
Is there an easy way to detect these events? Both navigating and navigated don't get fired.
Can I solve this with a Custom Webview Renderer? How?
I eventually want to capture the specfic url and load it in the current webview, or add an additional webview as tab in my app.