Inamiy Flexbox Save

Swift wrapper of facebook/yoga (CSS Flexbox layout engine).

Project README

Flexbox

Swift wrapper of facebook/yoga, a cross-platform CSS Flexbox layout engine that is lightweight, runs asynchronously, and is far simpler than AutoLayout.

If you are new to CSS Flexbox, visit following links and have fun :)

Example

let node = Node(
    size: CGSize(width: 300, height: 100),
    children: [
        Node(size: CGSize(width: 20, height: 20)),
        Node(size: CGSize(width: 40, height: 80)),
        Node(size: CGSize(width: 60, height: 40)),
    ],
    flexDirection: .row,
    justifyContent: ... // .flexStart, .center, .flexEnd, .spaceBetween, .spaceAround
)

let view = ... // prepare view hierarchy

DispatchQueue.global.async {
    let layout = node.layout()

    DispatchQueue.main.async {
        layout.apply(view)
    }
}

This will result:

Please see FlexboxPlayground for more examples.

Acknowledgement

The original idea is from joshaber/SwiftBox.

License

MIT

Open Source Agenda is not affiliated with "Inamiy Flexbox" Project. README Source: inamiy/Flexbox
Stars
75
Open Issues
0
Last Commit
6 years ago
Repository
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating