A details page is called using
await Navigation.PushModalAsync(new NavigationPage(new DetailsPage(Item)));
The details page returns control to called page using
await Navigation.PopModalAsync();
Then on returning to the called page the OnAppearing() is invoked. This is still happening in Android app but not in app deployed to iOS13. But in iOS 12.x OnAppearing() is still invoked.
Any reasons? Is it a bug?