I want to set height and width of LoadingPlaceholder in CachedImage of FFImageLoading in Xamarin.Forms.
I have tried by following way but the GIF image use full size and shows big. I want to make it 64px as it's current size.
Code: xaml file
Namespace: xmlns:ff="clr-namespace:FFImageLoading.Forms;assembly=FFImageLoading.Forms"
<ff:CachedImage Source="image.png" Aspect="AspectFill"
LoadingPlaceholder="Spinner64px.gif"
WidthRequest="375"
HeightRequest="375">
</ff:CachedImage>
Tried with SVG but didn't get any effect
<ff:CachedImage Source="image.png" Aspect="AspectFill"
LoadingPlaceholder="Spinner64pxSVG.svg"
WidthRequest="375"
HeightRequest="375">
</ff:CachedImage>
Can you please suggest me how to show original size of gif image or set height and width of it?