Boa noite, estou tendo um erro ao tentar fechar a pagina e retornar para a anterior.
fazendo a chamada na pagina ButtonPage.cs:
protected override async void OnAppearing()
{
if (Settings.CPFSettings == "")
{
await this.Navigation.PushAsync(new CPFPage());
}
}
ao realizar o clique de um botao quero retornar a pagina e uso:
if (CPFValido(entryCPF.Text))
{
Settings.CPFSettings = entryCPF.Text;
await Navigation.PopAsync();
}
porem quando executa a linha "await Navigation.PopAsync();" o app da um erro e fecha. O erro é: Unhandled Exception: System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index ocorreu.