This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
aurora-sharp-desktop/Aurora/App.xaml.cs
2019-05-17 18:21:02 -04:00

33 lines
611 B
C#

using System;
using Aurora.Frontend.Views.Main;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace Aurora
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new MainView();
}
protected override void OnStart()
{
// Handle when your app starts
}
protected override void OnSleep()
{
// Handle when your app sleeps
}
protected override void OnResume()
{
// Handle when your app resumes
}
}
}