0 votes
in Xamarin Exordium by
What is the way of navigation from one page to another?

1 Answer

0 votes
by

After clicking on the button of the first page, we call the following method through which we can navigate from one page to another page.

  1. await Navigation.PushAsync(new MySecondPageXaml(), true);  

We have to use the "Navigation" page property which is available under the ContentPage class. This code is written in the coding page of the MainPage.XAML file.

Related questions

0 votes
asked Sep 4, 2023 in Apache by JackTerrance
0 votes
asked Dec 9, 2022 in Network Theory by Robin
...