Xam.Plugin.Webview
Xam.Plugin.Webview copied to clipboard
Xamarin Plugin for a HybridWebView in PCL projects.
Hello, I seem to be having a problem with OnNavigationStarted event in opening (external) website content. I'm using OnNavigationStarted to show the activity indicator, and then OnNavigationCompleted to disable the...

Hi, This is a great plugin. This is just to alert the maintainers that there is a KNOWN ISSUE with Xamarin WebView and the new Shell page navigation approach. This...
Could you implement the possibility to return something from c# to javascript? Example: C#: ```cs WebView.AddLocalCallback("square", (str) => { int i = int.Parse(str); return i*i; }); ``` JavaScript: ```js var...
internal async Task OnJavascriptInjectionRequest(string js) { if (Control == null || Element == null) return string.Empty; var response = string.Empty; try { var script = new WKUserScript(new NSString(js), WKUserScriptInjectionTime.AtDocumentStart, false);...
Hello, I needed to add this two features so, in the detail, I added: 1) A property **IgnoreSSLErrors** to explicitly let the WebView ignore SSL errors on self signed certificates....
Hi, under iOS the webview does not load images from the bundle resources that are referenced in the string data. E.g. does not show the image although it is part...
Problem: Exceptions when passing string data that contains an extended Unicode character set via JS callbacks, due to the limitation of `window.btoa(str)` which can only convert ASCII / Latin1 strings...
Enable geolocation on Android.
Push a screen that contains this plugin, then pop the view before it finishes loading. This crashes. IOS: System.NullReferenceException Object reference not set to an instance of an object at...