I have added a WebViewClient and overriding the following method: public override WebResourceResponse ShouldInterceptRequest(WebView view, IWebResourceRequest request) { request.RequestHeaders.Add(&q… (View Post)
I need to create a text input, either a Label or Editor, that automatically adjust the height as the text grows. I have tried to create a custom renderer for an Editor and I'm almost there (I think).… (View Post)
Never mind. I found out what it was. I was trying to set the MainPage in an async thread. Changing to: Device.BeginInvokeOnMainThread(() => { Application.Current.MainPage = new StartPage(); }); ..… (View Post)
Hi Can anyone explain why the following code works perfect on the iPhone 5 and 6 simulators, and on my device (iPhone 6) but fails on the iPhone 4s simulator and on another person's device (also iPho… (View Post)