Created
January 3, 2018 16:31
-
-
Save sjehutch/d9ab0b1c60d3d08da4708123eee128da to your computer and use it in GitHub Desktop.
animation xamarin background color
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
UIView.Animate(0.25, | |
animation: () => { | |
this.testView.BackgroundColor = new UIColor(red: 0.18f, green: 0.60f, blue: 0.95f, alpha: 1.0f); | |
}, | |
completion: () => { | |
this.testView.BackgroundColor = new UIColor(red: 0.08f, green: 0.38f, blue: 0.80f, alpha: 1.0f); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment