Skip to content

Instantly share code, notes, and snippets.

@hminaya
Created May 3, 2017 23:44
Show Gist options
  • Save hminaya/b557cc6a96e66f3518fca9756618d24a to your computer and use it in GitHub Desktop.
Save hminaya/b557cc6a96e66f3518fca9756618d24a to your computer and use it in GitHub Desktop.
PRISM - App.xaml.cs
using Xamarin.Forms;
using Prism.Unity;
using Prism.Mvvm;
namespace Diplomado
{
public partial class App : PrismApplication
{
public App()
{
InitializeComponent();
}
protected override void OnInitialized()
{
NavigationService.NavigateAsync("DashboardPage");
}
protected override void RegisterTypes()
{
Container.RegisterTypeForNavigation<DashboardPage>();
Container.RegisterTypeForNavigation<DestinationPage>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment