| 123456789101112131415161718192021222324252627282930313233343536 |
- using DevDaysSpeakers.View;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Xamarin.Forms;
- namespace DevDaysSpeakers
- {
- public class App : Application
- {
- public App()
- {
- // The root page of your application
- var content = new SpeakersPage();
- MainPage = new NavigationPage(content);
- }
- 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
- }
- }
- }
|