- page
- The Xamarin.Forms.Page to be pushed on top of the navigation stack.
A task representing the asynchronous dismiss operation.
The following example shows INavigation.Push and INavigation.Pop usage:
C# Example
var newPage = new ContentPage ();
await Navigation.PushAsync (newPage);
Debug.WriteLine ("the new page is now showing");
var poppedPage = await Navigation.PopAsync ();
Debug.WriteLine ("the new page is dismissed");
Debug.WriteLine (Object.ReferenceEquals (newPage, poppedPage)); //prints "true"