Hello I am new to Xamarin.Forms... I just have one easy question -I guess-...
Ok, once you add your pages (ContentPages if you want) to the NavigationPage, how do you reuse/ use the same page with their own information...
In ¿Mono.Android? people have activities -instead of Pages with their own lifecycles (and temporal instance information)- thank to Intent...
How do people who work with NavigationPage transfer information instead of declaring a new Page
this.Navigation.PushAsync(new Pagetype2());
this.Navigation.PopAsync(new Pagetype1());// where Pagetype2 and Pagetype1 are types of pages not instances nor variables...
Thank a lot... I guess sooner or later I will get the info...