Ripple Effect in .NET MAUI Effects View (SfEffectsView)
30 Mar 20221 minute to read
The SfEffects.Ripple is a expandable circle, which is initially placed on the tapped location, and it grows till the whole layout is filled. SfEffects.Ripple is rendered based on InitialRippleFactor.
<syncEffectsView:SfEffectsView TouchDownEffects="Ripple">
</syncEffectsView:SfEffectsView>
var effectsView = new SfEffectsView()
{
TouchDownEffects = SfEffects.Ripple
};