Skip to content

Instantly share code, notes, and snippets.

@Char0394
Created June 19, 2018 19:35
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 Char0394/3922d0e9060f9f8053cf0096e684143a to your computer and use it in GitHub Desktop.
Save Char0394/3922d0e9060f9f8053cf0096e684143a to your computer and use it in GitHub Desktop.
public class ExpandButtonTriggerAction: TriggerAction<Button>
{
protected async override void Invoke(Button button)
{
await button.ScaleTo(0.95, 50, Easing.CubicOut);
await button.ScaleTo(1, 50, Easing.CubicIn);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment