Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public partial class MainPage : ContentPage
  2. {
  3. public MainPage()
  4. {
  5. InitializeComponent();
  6. #if DEV
  7. BackgroundColor = Color.LightGray;
  8. enviromentLabel.Text = "DEV";
  9. #else
  10. BackgroundColor = Color.LightBlue;
  11. enviromentLabel.Text = "PROD";
  12. #endif
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement