in ComponentKit/LayoutComponents/CKFlexboxComponent.mm [393:409]
static YGJustify ygJustifyFromStackStyle(const CKFlexboxComponentStyle &style)
{
switch (style.justifyContent) {
case CKFlexboxJustifyContentCenter:
return YGJustifyCenter;
case CKFlexboxJustifyContentEnd:
return YGJustifyFlexEnd;
case CKFlexboxJustifyContentStart:
return YGJustifyFlexStart;
case CKFlexboxJustifyContentSpaceBetween:
return YGJustifySpaceBetween;
case CKFlexboxJustifyContentSpaceAround:
return YGJustifySpaceAround;
case CKFlexboxJustifyContentSpaceEvenly:
return YGJustifySpaceEvenly;
}
}