We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just wondering how can I set the animation speed. Would be cool to have a property to set it.
The text was updated successfully, but these errors were encountered:
Just came across this issue migrating from XF
Sorry, something went wrong.
Not ideal, but i found a workaround. You can manually animate the progress in the codebehind like this
new Animation( d => AnimationView.Progress = TimeSpan.FromMilliseconds(d), 0, AnimationView.Duration.TotalMilliseconds, Easing.Linear ).Commit(AnimationView, "Accept", length: 500);
AnimationView is my SKLottieView. Then you just have to adjust length to taste. Hope it helps you <3
No branches or pull requests
Just wondering how can I set the animation speed. Would be cool to have a property to set it.
The text was updated successfully, but these errors were encountered: