[Xamarin] Add Yoga/YogaKit identical to native objc version

This commit is contained in:
Rui Marinho
2017-01-06 01:35:58 +00:00
parent 2d9c7bfc4f
commit 11567e6713
11 changed files with 539 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using UIKit;
namespace Facebook.YogaKit.iOS.Sample
{
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, "AppDelegate");
}
}
}