Created
April 29, 2016 17:44
-
-
Save baileysh9/3b2180a819921dd4d6ba3bbd406c0c39 to your computer and use it in GitHub Desktop.
iOSScreenDim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public override bool FinishedLaunching (UIApplication app, NSDictionary options) | |
{ | |
global::Xamarin.Forms.Forms.Init (); | |
// Code for starting up the Xamarin Test Cloud Agent | |
#if ENABLE_TEST_CLOUD | |
Xamarin.Calabash.Start(); | |
#endif | |
App.ScreenHeight = (int)UIScreen.MainScreen.Bounds.Height; | |
App.ScreenWidth = (int)UIScreen.MainScreen.Bounds.Width; | |
LoadApplication (new App ()); | |
return base.FinishedLaunching (app, options); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment