summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/AppLifeCycle.cs
blob: b32939ee1d06189e909963354960c5b2514ba5b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace Xamarin.Forms.Controls
{
	public class AppLifeCycle : Application
	{
		public AppLifeCycle()
		{
			MainPage = new ContentPage
			{
				Content = new Label
				{
					Text = "Testing Lifecycle events"
				}
			};
		}
	}
}