I have recently encountered an issue with links having the target attribute set to _blank. Tapping on them has no effect. The WebView does not load the linked page.
Searching around I found this solution: https://github.com/xamarin/Xamarin.Forms/issues/12917 which is setting SetSupportMultipleWindows(false). More specifically the suggestion is to insert the following line of code: webView.Settings.SetSupportMultipleWindows(true);.
Trying that I get the following error: Error CS1061 'WebView' does not contain a definition for 'Settings' and no accessible extension method 'Settings' accepting a first argument of type 'WebView' could be found (are you missing a using directive or an assembly reference?)
Is there a way to overcome the error?