Skip to content

Instantly share code, notes, and snippets.

@ytabuchi
Last active September 27, 2016 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ytabuchi/e6dd0704cc4a6dc4ac0a57346fb407cc to your computer and use it in GitHub Desktop.
Save ytabuchi/e6dd0704cc4a6dc4ac0a57346fb407cc to your computer and use it in GitHub Desktop.
protected override async void OnAppearing()
{
base.OnAppearing();
await iconImage.ScaleTo(1, 2000); //初期化などの時間のかかる処理を想定
await iconImage.ScaleTo(0.9, 1500, Easing.Linear);
await iconImage.ScaleTo(150, 1200, Easing.Linear);
await Navigation.PushAsync(new AnimationTest());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment