Skip to content

Instantly share code, notes, and snippets.

@sjehutch
Created January 3, 2018 16:31
Show Gist options
  • Save sjehutch/d9ab0b1c60d3d08da4708123eee128da to your computer and use it in GitHub Desktop.
Save sjehutch/d9ab0b1c60d3d08da4708123eee128da to your computer and use it in GitHub Desktop.
animation xamarin background color
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