Animation Duration in .NET MAUI Busy Indicator (SfBusyIndicator)

23 Jul 20261 minute to read

The DurationFactor property of the .NET MAUI Busy Indicator controls the animation speed. Type: double. The default value is 0.5, and the valid range is 0 to 1 (where 0 is the fastest and 1 is the slowest).

<core:SfBusyIndicator x:Name="busyIndicator"
                      IsRunning="True"
                      AnimationType="CircularMaterial"
                      DurationFactor="0.2" />
SfBusyIndicator busyIndicator = new SfBusyIndicator()
{
    IsRunning = true,
    AnimationType = AnimationType.CircularMaterial,
    DurationFactor = 0.2,
};

The following image illustrates the result of the above code.

Duration