I am developing an application for Android and iOS with Xamarin Forms. Then, when I open a new page I do it in the following way:
var newPage = new ContentPage (); await Navigation.PushAsync (newPage);
My question is: By pressing the "Back Button" button (either the physical button of the device or the one that is in the navigation bar) the page is completely removed from the navigation or it is in the cache?