How to update ListView
after returning to View
using PopAsync
?
I need the ListView
to load its items after the Address Insertion View to record a new address.
OBS: The PushAsync
or PushModalAsync
returns to View
correctly, however wrong for what I need.
InsertEnderecoViewModel:
if (Api.APICliente.InserirEndereco(objEnd) == 0)
{
if (alteracao == false)
{
await Page.DisplayAlert("Mensagem", "Endereço inserido com sucesso!", "OK");
}
else
await Page.DisplayAlert("Mensagem", "Endereço alterado com sucesso!", "OK");
}
else
await Page.DisplayAlert("Alerta", "Não foi possível inserir os dados!", "OK");
// Aqui retorna para a View de MeusEndereços onde contem a ListView que irá carregar os endereços cadastrados.
await Page.Navigation.PopAsync();