mirror of
https://gitee.com/blazorcomponent/MASA.Blazor.git
synced 2025-12-06 10:19:23 +08:00
* ♻ 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
18 lines
447 B
Plaintext
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
|
|
}
|
|
|
|
}
|