Magic73

Results 13 comments of Magic73

I've to start a new project (about 10-15 FTE). I saw that this WebView has all I need (in order to simulate tab page, I'll duplicate the control). Clearing cookie...

I started to do some check about it.. from what I saw so far, there's no way to clear cookie/cache for a single instance. On droid, the Android.Webkit.WebView control has...

Ok, I found it :) On droid, just use IsPrivateBrowsingEnabled as I wrote above. On UPW, just call await Windows.UI.Xaml.Controls.WebView.ClearTemporaryWebDataAsync(); I suggest to create an async method to clear the...

Same here, for UWP, Android and iOS. Edit: on UWP, this could be the issue: https://stackoverflow.com/questions/33053358/sending-email-attachments-via-uwp-emailmanager-not-working and inside there's a workaround (building a .msg file and open it with the...

I got this exception: Loaded assembly: /.........../Xamarin.RangeSlider.Common.dll [External] Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object But from source code, Xamarin.RangeSlider.Common.dll doesn't contain anything, just...

I just noticed that on iOS sample, inside the main.cs you put: public class Application { // This is the main entry point of the application. static void Main(string[] args)...

Ok, I found a strange issue: I have to add Xamarin.RangeSlider nuget package too. I added only Xamarin.Forms.RangeSlider. (but this is enough for Droid and UWP) Now, I got the...

So the issue is inside this: public override CGSize IntrinsicContentSize => new CGSize(NoIntrinsicMetric, Math.Max(LowerHandleImageNormal.Size.Height, UpperHandleImageNormal.Size.Height) + SpaceAboveThumbs); it seems that LowerHandleImageNormal is null, and LowenHandleImageNormal is: ``` private UIImage LowerHandleImageNormal...