mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-07 08:23:49 +00:00
33 lines
650 B
C#
33 lines
650 B
C#
using Xamarin.Forms;
|
|
|
|
namespace qController
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
public static INavigation iNav;
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
|
|
MainPage = new NavigationPage(new qControllerPage());
|
|
iNav = MainPage.Navigation;
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
}
|