App.cs 646 B

1234567891011121314151617181920212223242526272829303132
  1. using DevDaysSpeakers.View;
  2. using Xamarin.Forms;
  3. namespace DevDaysSpeakers
  4. {
  5. public class App : Application
  6. {
  7. public App()
  8. {
  9. // The root page of your application
  10. var content = new SpeakersPage();
  11. MainPage = new NavigationPage(content);
  12. }
  13. protected override void OnStart()
  14. {
  15. // Handle when your app starts
  16. }
  17. protected override void OnSleep()
  18. {
  19. // Handle when your app sleeps
  20. }
  21. protected override void OnResume()
  22. {
  23. // Handle when your app resumes
  24. }
  25. }
  26. }