How to change animation type in .NET MAUI Busy Indicator (SfBusyIndicator)?
In .NET MAUI, the AnimationType property for .NET MAUI Busy Indicator allows users to set one of the animations from the built-in ones. The different types of animations are CircularMaterial, Cupertino, and LinearMaterial. The default AnimationType is CircularMaterial
.
XAML
<ContentPage.Content>
<busyIndicator:SfBusyIndicator x:Name="busyIndicator"
IsRunning="True"
Title="Searching..."
AnimationType="Cupertino"/>
</ContentPage.Content>
C#
SfBusyIndicator busyIndicator = new SfBusyIndicator();
busyIndicator.IsRunning = true;
busyIndicator.Title = "Searching…";
busyIndicator.AnimationType = AnimationType.Cupertino;
Output
Conclusion
Hope you enjoyed learning about how to change animation type in .NET MAUI Busy Indicator (SfBusyIndicator).
You can refer to our .NET MAUI Busy Indicator’s feature tour page to learn about its other groundbreaking feature representations. You can explore our .NET MAUI Busy Indicator documentation to understand how to present and manipulate data.
For current customers, you can check out our .NET MAUI components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our .NET MAUI Busy Indicator and other .NET MAUI components.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!