Rotation Effect in .NET MAUI Effects View (SfEffectsView)

30 Mar 20221 minute to read

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

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

.net maui rotation animation