33 lines
548 B
C#
33 lines
548 B
C#
![]() |
using MobApp.Services;
|
|||
|
using MobApp.Views;
|
|||
|
using System;
|
|||
|
using Xamarin.Forms;
|
|||
|
using Xamarin.Forms.Xaml;
|
|||
|
|
|||
|
namespace MobApp
|
|||
|
{
|
|||
|
public partial class App : Application
|
|||
|
{
|
|||
|
|
|||
|
public App()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
|
|||
|
DependencyService.Register<MockDataStore>();
|
|||
|
MainPage = new AppShell();
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnStart()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnSleep()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnResume()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|