mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-08 00:43:51 +00:00
27 lines
439 B
C#
27 lines
439 B
C#
using Xamarin.Forms;
|
|
|
|
namespace QControlKitXamDemo
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
|
|
MainPage = new NavigationPage(new MainPage());
|
|
}
|
|
|
|
protected override void OnStart()
|
|
{
|
|
}
|
|
|
|
protected override void OnSleep()
|
|
{
|
|
}
|
|
|
|
protected override void OnResume()
|
|
{
|
|
}
|
|
}
|
|
}
|