我想在Xamarin.Forms中的FFImageLoading的CachedImage中设置LoadingPlaceholder的高度和宽度。
我尝试了以下方式,但GIF图像使用全尺寸并显示大。我希望它的当前大小为64px。
代码: xaml文件
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>
尝试使用SVG但没有任何效果
<ff:CachedImage Source="image.png" Aspect="AspectFill"
LoadingPlaceholder="Spinner64pxSVG.svg"
WidthRequest="375"
HeightRequest="375">
</ff:CachedImage>
您能否建议我如何显示gif图像的原始大小或设置它的高度和宽度?