Skip to content
Permalink
fce7e9cd71
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
32 lines (26 sloc) 665 Bytes
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
using System.IO;
namespace MyDailyTaskManger
{
public partial class App : Application
{
public static String FolderPath { get; private set; }
public App()
{
InitializeComponent();
FolderPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
MainPage = new NavigationPage(new MainPage());
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}