Andy Martin

Results 15 comments of Andy Martin

@jsuarezruiz Is this the planned fix for https://github.com/dotnet/maui/issues/18815 as well?

@xavier-rigau the issue is not resolved. I did have the PCL in the proper locations. Has an update been pushed to fix this issue that I should test?

@Emasoft I'm having a similar issue on uwp. I'm thinking it may have to do with file permissions.

@Emasoft I wrote up the bug for UWP, which I supppose is different from your Android bug. [issue 58](https://github.com/dsplaisted/PCLStorage/issues/58) I was having a bug similar to yours on Android the...

@nicky112 Here is some example code from my project that allows you to click an SVGImage. ``` //Put this in your Shared Project public class SVGImageButton : ContentView { private...

I haven't seen that issue. Perhaps you could try the code below to ensure it does not happen during render. @VisionFlare `Device.BeginInvokeOnMainThread(()=>{ Content= image; });`

I don't think I had a typo, but it looks like you are right and typeof(this) does not work. Try this instead: public static readonly Assembly assembly = this.GetType().GetTypeInfo().Assembly; I...

@RaZp29 could it be because your class is static?

So is the issue that the default fill should be a different color, or should this issue now be closed?

Just for the record, I'm not the project maintainer. As far as I can tell, the default is transparent as you say. I'm working on an extension that allows me...