Files
MASA.Blazor/docs/Masa.Blazor.Docs/Examples/mobiles/pull-refresh/Disabled.razor
capdiem 9ffb99fcf4 ♻ refactor: migrate all mobile components to a standalone project (#2385)
* ♻ refactor: migrate all mobile components to a separate project

* remove unused files

* update

* update locale

* 🐛 fix: updating the logic of fetching latest release version

* update cicd

* update
2025-04-17 17:12:58 +08:00

18 lines
447 B
Plaintext

<div class="overflow-auto" style="height: 300px">
<MPullRefresh Disabled OnRefresh="OnRefresh">
<div class="text-center rounded pt-6"
style="height: 500px; border: 1px dashed grey;">
You cannot pull to refresh here, it is disabled.
</div>
</MPullRefresh>
</div>
@code {
private async Task OnRefresh()
{
await Task.Delay(1000); // Simulate a long running operation
}
}