ant-design-blazor/site/AntDesign.Docs/Demos/Components/Spin/demo/DelayAndDebounce.razor
2021-02-06 20:15:46 +08:00

20 lines
441 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div>
<Spin Spinning=loading Delay=500>
<Alert
Message="Alert message title"
Description="Further details about the context of this alert."
Type="info"
/>
</Spin>
<div style="margin-top: 16px">
Loading state
<Switch Checked=loading OnChange=toggle />
</div>
</div>
@code {
bool loading = false;
void toggle(bool value) => loading = value;
}