Rotation Effect in .NET MAUI Effects View (SfEffectsView)

The SfEffects.Rotation provides a circular movement to the SfEffectsView around its center, based on the specified Angle.

<syncEffectsView:SfEffectsView
    TouchDownEffects="Rotation"
    Angle="180">
</syncEffectsView:SfEffectsView>
var effectsView = new SfEffectsView
{
    TouchDownEffects = SfEffects.Rotation,
    Angle = 180,
};

Rotation animation