You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `EnableRippleAnimation` property of the [SfTabView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TabView.SfTabView.html) allows you to enable or disable the ripple animation for tab headers. This animation provides visual feedback when a tab header is tapped. The default value of the `EnableRippleAnimation` property is `true`.
591
+
592
+
{% tabs %}
593
+
594
+
{% highlight xaml %}
595
+
<!-- Define the SfTabView control with the ripple animation disabled -->
596
+
<tabView:SfTabView EnableRippleAnimation="False">
597
+
<!-- Define tab items -->
598
+
</tabView:SfTabView>
599
+
{% endhighlight %}
600
+
601
+
{% highlight C# %}
602
+
// Create an instance of the SfTabView control
603
+
SfTabView tabView = new SfTabView();
604
+
605
+
// Disable the ripple animation
606
+
tabView.EnableRippleAnimation = false;
607
+
608
+
{% endhighlight %}
609
+
610
+
{% endtabs %}
611
+
612
+
## How to
613
+
614
+
### Disable hover effect on tab item
615
+
616
+
To disable the hover effect when the mouse pointer is over a [TabItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TabView.SfTabItem.html) header, set color value `Transparent` to the built-in key `SfTabViewHoverBackground`.
0 commit comments