2
How to update the ListView
after returning to the View
using the PopAsync
?
I need the ListView
load items from it after the Address Insertion View saves a new address.
OBS: The PushAsync
or PushModalAsync
return to the View
correctly, but wrong for what I need.
Inserirenderecoviewmodel:
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();
By the title/formulation of the question you are already managing to pass the data, already getting it? It remains only to update the
Listview
? How’s the code ofListview
to be filled?– rubStackOverflow