33 lines
551 B
C#
33 lines
551 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
using Gallery.Services;
|
|
using Gallery.Views;
|
|
|
|
namespace Gallery
|
|
{
|
|
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()
|
|
{
|
|
}
|
|
}
|
|
}
|