add account

This commit is contained in:
2022-02-26 12:36:32 +08:00
parent fae6d2ce50
commit 4d69bea70b
12 changed files with 192 additions and 23 deletions

View File

@ -39,7 +39,14 @@ namespace Billing.Views
private async void OnAddBilling()
{
await Navigation.PushAsync(new AddBillPage());
if (Tap.IsBusy)
{
return;
}
using (Tap.Start())
{
await Navigation.PushAsync(new AddBillPage());
}
}
}
}