MyMobileApp/App.xaml.cs

33 lines
561 B
C#
Raw Permalink Normal View History

2025-03-13 11:30:05 +03:00
using MyMobileApp.Services;
using MyMobileApp.Views;
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace MyMobileApp
{
public partial class App : Application
{
public App()
{
InitializeComponent();
DependencyService.Register<MockDataStore>();
MainPage = new SignIn();
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}