bitwarden-android/src/App/App.xaml.cs

33 lines
658 B
C#
Raw Normal View History

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