Highlight Effect in .NET MAUI Effects View (SfEffectsView)
SfEffects.Highlight is a smooth transition on the background color of SfEffectsView
<syncEffectsView:SfEffectsView
TouchDownEffects="Highlight"
HighlightBackground="#FF0000">
</syncEffectsView:SfEffectsView>
var effectsView = new SfEffectsView
{
TouchDownEffects = SfEffects.Highlight,
HighlightBackground = new SolidColorBrush(Colors.Aqua)
};