Hi Andreas,
Greetings from Syncfusion support,
We have validated your reported query. We improved the spinner and included it with the 18.3 release version.
Suppose, if you want the same spinner as previous versions, we suggest you to configure the Type property for SfSpinner setting Material as type. Check the below code blocks for reference.
@using Syncfusion.Blazor.Buttons
@using Syncfusion.Blazor.Spinner
<div>
<SfButton @onclick="@ClickHandler">Show/Hide Spinner</SfButton>
<div id="container">
<SfSpinner @bind-Visible="@VisibleProperty" Type="SpinnerType.Material">
</SfSpinner>
</div>
</div>
@code{
private bool VisibleProperty { get; set; } = false;
private async Task ClickHandler()
{
this.VisibleProperty = true;
}
}
|
Please let us know if the solution helps,
Regards,
Indrajith