// Yoga specific properties, not compatible with flexbox specification
// Returns the size of the view if no constraints were given. This could equivalent to calling [self sizeThatFits:CGSizeMake(CGFLOAT_MAX, CGFLOAT_MAX)];
SizeFIntrinsicSize{get;}
floatAspectRatio{get;set;}
// Get the resolved direction of this node. This won't be YGDirectionInherit
YogaDirectionResolvedDirection{get;}
// Returns the number of children that are using Flexbox.
intNumberOfChildren{get;}
// Return a BOOL indiciating whether or not we this node contains any subviews that are included in Yoga's layout.
boolIsLeaf{get;}
// Perform a layout calculation and update the frames of the views in the hierarchy with the results
voidApplyLayout();
// Mark that a view's layout needs to be recalculated. Only works for leaf views.