Hello,
i'm playing around with prism. At the moment, i'm trying to create an app that starts wih a navigation page.
In a 'classic' xamarin.forms app i would do it like this in my App.cs:
public App ()
{
InitializeComponent();
var myMainPage = new MyMainPage();
var navPage = new NavigationPage(myMainPage);
MainPage = navPage;
}
I'm struggeling to do this with prism.
@BrianLagunas can you provide an example on how to start with a navigation page using prism?