summaryrefslogtreecommitdiff
path: root/PagesGallery/PagesGallery/App.xaml.cs
blob: 5cad242d3a6ecfed4ecf9ebc235dd26429d38c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Xamarin.Forms;

namespace PagesGallery
{
	public partial class App : Application
	{
		public App ()
		{
			InitializeComponent ();

			var eventsPage = new EventsPage ();
			var speakersPage = new SpeakersPage ();
			MainPage = new NavigationPage (new TabbedPage {
				Title = "Xamarin Evolve 2016",
				Children = {
					eventsPage,
					speakersPage
				}
			});
		}

		protected override void OnStart ()
		{
			// Handle when your app starts
		}

		protected override void OnSleep ()
		{
			// Handle when your app sleeps
		}

		protected override void OnResume ()
		{
			// Handle when your app resumes
		}
	}
}