Advertisement
Guest User

Untitled

a guest
Oct 24th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. using System;
  2. using Xamarin.Forms;
  3. using Xamarin.Forms.Xaml;
  4.  
  5. [assembly: XamlCompilation(XamlCompilationOptions.Compile)]
  6. namespace App6
  7. {
  8. public partial class App : Application
  9. {
  10. public App()
  11. {
  12. InitializeComponent();
  13.  
  14. MainPage = new NavigationPage(new WelcomePage())
  15. {
  16. BarBackgroundColor = Color.HotPink,
  17. BarTextColor = Color.WhiteSmoke
  18. };
  19. }
  20.  
  21. protected override void OnStart()
  22. {
  23. // Handle when your app starts
  24. }
  25.  
  26. protected override void OnSleep()
  27. {
  28. // Handle when your app sleeps
  29. }
  30.  
  31. protected override void OnResume()
  32. {
  33. // Handle when your app resumes
  34. }
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement