icon select
This commit is contained in:
@ -95,9 +95,23 @@ namespace Billing.Views
|
||||
}
|
||||
}
|
||||
|
||||
private void OnSelectIcon()
|
||||
private async void OnSelectIcon()
|
||||
{
|
||||
if (Tap.IsBusy)
|
||||
{
|
||||
return;
|
||||
}
|
||||
using (Tap.Start())
|
||||
{
|
||||
var page = new IconSelectPage(AccountIcon);
|
||||
page.IconChecked += Account_IconChecked;
|
||||
await Navigation.PushAsync(page);
|
||||
}
|
||||
}
|
||||
|
||||
private void Account_IconChecked(object sender, string icon)
|
||||
{
|
||||
AccountIcon = icon;
|
||||
}
|
||||
|
||||
private async void OnSelectCategory()
|
||||
|
Reference in New Issue
Block a user