Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. using System;
  2. using Xamarin.Forms;
  3. using Xamarin.Forms.Xaml;
  4.  
  5. namespace App2
  6. {
  7. public partial class App : Application
  8. {
  9. public App()
  10. {
  11. InitializeComponent();
  12.  
  13. MainPage = new AppShell();
  14. }
  15.  
  16. protected override void OnStart()
  17. {
  18. // Handle when your app starts
  19. }
  20.  
  21. protected override void OnSleep()
  22. {
  23. // Handle when your app sleeps
  24. }
  25.  
  26. protected override void OnResume()
  27. {
  28. // Handle when your app resumes
  29. }
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement