Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created October 22, 2018 22:46
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 icebeam7/aa5627b65751ab8071828ee30cf98507 to your computer and use it in GitHub Desktop.
Save icebeam7/aa5627b65751ab8071828ee30cf98507 to your computer and use it in GitHub Desktop.
MyStore.EmployeesApp: App.xaml.cs
using System;
using Xamarin.Forms;
using MyStore.Models;
namespace MyStore.EmployeesApp
{
public partial class App : Application
{
public static EmployeeDTO CurrentEmployee;
public App ()
{
InitializeComponent();
MainPage = new NavigationPage(new Pages.LoginPage());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment