bitwarden-android/src/App/App.xaml.cs
Kyle Spearrin 30dd2e993f home page
2019-03-28 17:10:10 -04:00

32 lines
658 B
C#

using Bit.App.Pages;
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
[assembly: XamlCompilation(XamlCompilationOptions.Compile)]
namespace Bit.App
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new HomePage();
}
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
}
}
}