App.cs 789 B

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