What is the best way to stop the progress bar animation in Xamarin Forms? Progress is started with:
animProgressBar = async () => {
...
await progressBar.ProgressTo (0, 10000, Easing.Linear);
...
};
I would like to stop the animation and restart it. I have tried things like
progressBar.AbortAnimation("ProgressTo");
without success.