yoga-sys 0.2.3

Raw rust bindings for yoga (facebook flex layout cross-platform engine)
Documentation

yoga-sys Build StatusBuild Status

Raw rust bindings for yoga.

Disclaimer: Those bindings are not provided by any of the facebook maintainers and thus may contains additional bugs.

Getting started:

Add to your Cargo.toml:

[dependencies]
yoga-sys = "0.2.3"

In your main.rs or lib.rs file add:

extern crate yoga_sys;

Example

Here is the example that you can find here translated to rust using this crate:

extern crate yoga_sys;

use yoga_sys::*;

fn main() {
    unsafe {
        let root = YGNodeNew();
        YGNodeStyleSetWidth(root, 500.);
        YGNodeStyleSetHeight(root, 120.);
        YGNodeStyleSetFlexDirection(root, YGFlexDirection::YGFlexDirectionRow);
        YGNodeStyleSetPadding(root, YGEdge::YGEdgeAll, 20.);

        let image = YGNodeNew();
        YGNodeStyleSetWidth(image, 80.);
        YGNodeStyleSetMargin(image, YGEdge::YGEdgeEnd, 20.);

        let text = YGNodeNew();
        YGNodeStyleSetHeight(text, 25.);
        YGNodeStyleSetAlignSelf(text, YGAlign::YGAlignCenter);
        YGNodeStyleSetFlexGrow(text, 1.);

        YGNodeInsertChild(root, image, 0);
        YGNodeInsertChild(root, text, 1);

        YGNodeFreeRecursive(root);
    }
}