Skip to content

Instantly share code, notes, and snippets.

@Char0394
Created March 26, 2022 16:25
Show Gist options
  • Select an option

  • Save Char0394/f0deeddd3a1f7bbe10680b628e891a0e to your computer and use it in GitHub Desktop.

Select an option

Save Char0394/f0deeddd3a1f7bbe10680b628e891a0e to your computer and use it in GitHub Desktop.
public class AnimatedView : ContentView
{
public AnimatedView()
{
Device.StartTimer(TimeSpan.FromSeconds(1.5), () =>
{
this.ScaleTo(0.95, 900, Easing.CubicInOut).ContinueWith((x) =>
{
this.ScaleTo(1, 900, Easing.CubicInOut);
});
return true;
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment