Example #1
0
 public static extern void YGNodeStyleSetPaddingPercent(YGNodeHandle node, YogaEdge edge, float padding);
 public static extern YogaJustify YGNodeStyleGetJustifyContent(YGNodeHandle node);
 public static extern YogaAlign YGNodeStyleGetAlignContent(YGNodeHandle node);
 public static extern void YGNodeStyleSetDirection(YGNodeHandle node, YogaDirection direction);
 public static extern YogaFlexDirection YGNodeStyleGetFlexDirection(YGNodeHandle node);
 public static extern void YGNodeSetMeasureFunc(
     YGNodeHandle node,
     [MarshalAs(UnmanagedType.FunctionPtr)] YogaMeasureFunc measureFunc);
 public static extern void YGNodeSetHasNewLayout(
     YGNodeHandle node,
     [MarshalAs(UnmanagedType.I1)] bool hasNewLayout);
Example #8
0
 public static extern float YGNodeLayoutGetHeight(YGNodeHandle node);
Example #9
0
 public static extern float YGNodeLayoutGetMargin(YGNodeHandle node, YogaEdge edge);
Example #10
0
 public static extern float YGNodeLayoutGetBottom(YGNodeHandle node);
Example #11
0
 public static extern float YGNodeLayoutGetWidth(YGNodeHandle node);
Example #12
0
 public static extern float YGNodeStyleGetBorder(YGNodeHandle node, YogaEdge edge);
Example #13
0
 public static extern void YGNodeStyleSetBorder(YGNodeHandle node, YogaEdge edge, float border);
Example #14
0
 public static extern YogaValueType YGNodeStyleGetPadding(YGNodeHandle node, YogaEdge edge);
 public static extern void YGNodePrint(YGNodeHandle node, YogaPrintOptions options);
Example #16
0
 public static extern float YGNodeLayoutGetPadding(YGNodeHandle node, YogaEdge edge);
 public static extern void YGNodeCopyStyle(YGNodeHandle dstNode, YGNodeHandle srcNode);
Example #18
0
 public static extern YogaDirection YGNodeLayoutGetDirection(YGNodeHandle node);
 public static extern void YGNodeSetBaselineFunc(
     YGNodeHandle node,
     [MarshalAs(UnmanagedType.FunctionPtr)] YogaBaselineFunc baselineFunc);
Example #20
0
 public static extern void YGNodeReset(YGNodeHandle node);
 public static extern bool YGNodeGetHasNewLayout(YGNodeHandle node);
Example #22
0
 public static extern void YGNodeInsertChild(
     YGNodeHandle node,
     YGNodeHandle child,
     uint index);
 public static extern void YGNodeStyleSetFlexDirection(YGNodeHandle node, YogaFlexDirection flexDirection);
Example #24
0
 public static extern void YGNodeRemoveChild(YGNodeHandle node, YGNodeHandle child);
 public static extern void YGNodeStyleSetJustifyContent(YGNodeHandle node, YogaJustify justifyContent);
Example #26
0
 public static extern void YGNodeCalculateLayout(
     YGNodeHandle node,
     float availableWidth,
     float availableHeight,
     YogaDirection parentDirection);
 public static extern void YGNodeStyleSetAlignContent(YGNodeHandle node, YogaAlign alignContent);
 public static extern bool YGNodeIsDirty(YGNodeHandle node);
 public static extern void YGNodeStyleSetAlignItems(YGNodeHandle node, YogaAlign alignItems);
Example #30
0
 public static extern YogaValueType YGNodeStyleGetMargin(YGNodeHandle node, YogaEdge edge);