My project is Xamarin iOS project. I tried to load the image using ffimageloading nuget package using the below:
var fileURL = NSBundle.MainBundle.PathForResource("test", "webp");
ImageService.Instance.LoadFile(fileURL).Into(imageView);
I even used the other available methods like embeddedResource, LoadURL, LoadFileFromApplicationBundle but in vain.
None of the above work and the imageView is empty. The same code seems to work fine for any GIF/png filetype.
Thanks in advance.