I'm starting learning using Xamarin Forms. In my case, I'm doing some tests with an Android application.
By paralleling Windows Phone, when I navigate from page A to page B, and then press the Back button of WP, it removes the page from the stack correctly.
In android there is this concept of Push and Pop in the pages. My question is: should I always use the Navigation.PopAsync () method? Or is it enough to use the navigation buttons on the device to turn the pages? In case I have to use Navigation.PopAsync (), should I put it in the OnDisappearing () event?
Hugs.