Created
December 4, 2016 15:34
-
-
Save ionixjunior/c1a865bedcdad82c16badf03c39fcf44 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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