Lottie IsPlaying 和 Loop 替换 xamarin 表单

dev*_*969 3 xamarin xamarin.forms lottie

我刚刚更新到最新版本的 Lottie;我们正在使用 Xamarin 表单,现在我的应用程序崩溃了,因为它找不到

  1. 正在玩
  2. 环形

谁能告诉我他们被什么取代了?

找不到任何建议更换的内容。

fef*_*oni 6

我最近在XF 中玩了lottie,我想我可以帮助你。

  1. 正在玩

我认为这已被替换为IsAnimating="{Binding IsAnimating}".

  1. 环形

没有确切的替代品。如果您想要无限循环,您可以使用RepeatMode="Infinite"并省略设置该RepeatCount字段。

如果您想播放动画特定次数,您可以跳过该RepeatMode字段,只需设置RepeatCount="1"。这将重复动画一次。如果您希望它只播放一次然后停止,您可以RepeatCount完全跳过该字段或将其设置为RepeatCount="0"

RepeatMode字段可能也可以与该RepeatCount字段组合,但我还没有测试其不同模式。

这是我的 xaml 中的示例。它无限循环animation.json。

<forms:AnimationView
    x:Name="animationView"
    Animation="animation.json"
    AutoPlay="True"
    RepeatMode="Infinite"
    VerticalOptions="FillAndExpand" 
    HorizontalOptions="FillAndExpand" />
Run Code Online (Sandbox Code Playgroud)