-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathLoadingPage.razor
More file actions
20 lines (16 loc) · 923 Bytes
/
LoadingPage.razor
File metadata and controls
20 lines (16 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@page "/mudloading"
@namespace MudExtensions.Docs.Pages
<ExamplePage Component="typeof(MudLoading)">
<ExampleCard ComponentName="Loading" ExampleName="LoadingExampleIntro" Title="Tips & Tricks" ShowCodeSection="false">
<LoadingExampleIntro />
</ExampleCard>
<ExampleCard ComponentName="Loading" ExampleName="LoadingExample1" Title="Usage" Description="MudLoading is very useful to create loading conditions faster.">
<LoadingExample1 />
</ExampleCard>
<ExampleCard ComponentName="Loading" ExampleName="LoadingExample2" Title="Custom Loading Indicator" Description="Loading indicator can be a RenderFragment.">
<LoadingExample2 />
</ExampleCard>
<ExampleCard ComponentName="Loading" ExampleName="LoadingExample3" Title="Custom Classes" Description="Custom classes added to the loader and text">
<LoadingExample3 />
</ExampleCard>
</ExamplePage>