Skip to content
Permalink
c49e60a976
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (24 sloc) 478 Bytes
using Coursework1.Views;
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace Coursework1
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new LogInPage();
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}