Skip to content

Instantly share code, notes, and snippets.

@ionixjunior
Created December 4, 2016 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ionixjunior/c1a865bedcdad82c16badf03c39fcf44 to your computer and use it in GitHub Desktop.
Save ionixjunior/c1a865bedcdad82c16badf03c39fcf44 to your computer and use it in GitHub Desktop.
using Core.Helpers;
using Core.Interfaces;
using Core.Views;
using Xamarin.Forms;
namespace Core
{
public partial class App : Application
{
public App()
{
InitializeComponent();
DependencyService.Register<INavigationHelper, NavigationHelper>();
MainPage = new NavigationPage(new Page1View());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment