Yes, you can create a rotation animation using the RotateTo
method.
C#
async void OnAnimateClicked(object sender, EventArgs e)
{
//whenever the button is clicked
await RotateAnimation(animatedLabel);
}
async Task RotateAnimation(View view)
{
await view.RotateTo(360, 1000);
}
Share with