xamarin forms set startup page code example
Example: how to choose startup page xarmin
public App() // in app.xaml.cs
{
InitializeComponent();
MainPage = new FirstPage();
}
public App() // in app.xaml.cs
{
InitializeComponent();
MainPage = new FirstPage();
}