App.cs 726 B

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