override the after submit content to show a skeleton as process indicator

This commit is contained in:
Nils Kruthoff 2026-06-30 23:29:17 +02:00
parent 0064db2b74
commit 348e638758
No known key found for this signature in database
GPG Key ID: A5C0151B4DDB172C

View File

@ -71,3 +71,13 @@ else
<ProviderSelection @bind-ProviderSettings="@this.ProviderSettings" ValidateProvider="@this.ValidatingProvider"/>
}
@code {
private protected override RenderFragment? AfterSubmitContent => @<MudCard>
<MudCardContent>
<MudSkeleton />
<MudSkeleton Animation="Animation.False" />
<MudSkeleton Animation="Animation.Wave" />
</MudCardContent>
</MudCard>;
}