Doubt with "Back Button" in Xamarin Forms

0

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?

    
asked by A.Amolitos 16.02.2017 в 02:54
source

1 answer

1

The page is deleted. If you want to return to the page you will have to create another object again.

    
answered by 21.02.2017 в 04:56