SkillAgentSearch skills...

Flexbox

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

Install / Use

/learn @inamiy/Flexbox
About this skill

Quality Score

0/100

Supported Platforms

Universal

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:

<img src="Assets/JustifyContent.png" width="300">

Please see FlexboxPlayground for more examples.

Acknowledgement

The original idea is from joshaber/SwiftBox.

License

MIT

View on GitHub
GitHub Stars75
CategoryDevelopment
Updated11mo ago
Forks6

Languages

Swift

Security Score

92/100

Audited on Apr 29, 2025

No findings