Created
March 26, 2022 16:25
-
-
Save Char0394/f0deeddd3a1f7bbe10680b628e891a0e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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