Skip to content

Instantly share code, notes, and snippets.

@stefandevo
Created June 18, 2014 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefandevo/c039db9a816ac700f3c4 to your computer and use it in GitHub Desktop.
Save stefandevo/c039db9a816ac700f3c4 to your computer and use it in GitHub Desktop.
Xamarin.Forms renderer hack called
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
Forms.Init();
Renderers.Init();
_window = new UIWindow(UIScreen.MainScreen.Bounds);
_window.RootViewController = App.GetMainPage().CreateViewController();
_window.MakeKeyAndVisible();
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment