You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Native Xamarin.Forms allows UriImageSource.Uri to be null - it behaves same as when ImageSource is null. With Glidex.Forms, however, it fails in GlideExtensions.LoadViaGlide method.
The text was updated successfully, but these errors were encountered:
Native Xamarin.Forms allows UriImageSource.Uri to be null - it behaves same as when ImageSource is null. With Glidex.Forms, however, it fails in GlideExtensions.LoadViaGlide method.
Hi Dreamescaper.
I just replaced the code in GlideExtensions.cs file:
case UriImageSource uriSource:
{
if(uriSource is null || uriSource.Uri is null || string.IsNullOrEmpty(uriSource.Uri.OriginalString))
{
Clear (request, imageView);
return;
}
builder = HandleUriImageSource (request, uriSource);
}
break;
Native Xamarin.Forms allows UriImageSource.Uri to be null - it behaves same as when ImageSource is null. With Glidex.Forms, however, it fails in GlideExtensions.LoadViaGlide method.
The text was updated successfully, but these errors were encountered: