Make Busy Animation Idle in .NET MAUI Busy Indicator (SfBusyIndicator)

21 May 20251 minute to read

The .NET MAUI Busy Indicator control provides support to determine if an animation needs to be executed. Setting the IsRunning property to false will stop the animation and remove the control from view.

<core:SfBusyIndicator x:Name="busyindicator"
                      AnimationType="CircularMaterial"
                      IsRunning="false" />
SfBusyIndicator busyIndicator = new SfBusyIndicator()
{
    AnimationType = AnimationType.CircularMaterial,                    
    IsRunning = "false"                    
};

NOTE

The default value for the IsRunning property is false.