2
I am starting learning using Xamarin Forms. In my case, I am doing some tests with an application for Android.
Running a parallel with Windows Phone, when I navigate from a page A to page B, and then press the Back button on the WP, it removes the page from the stack correctly.
On android there is this concept of Push and Pop on the pages. My question is: should I always use the Navigation.Popasync() method? Or do I just use the device’s own navigation buttons to turn the pages? In case I have to use Navigation.Popasync(), I should put it in the Ondisappearing event()?
Hugs.