Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 593 Bytes

ReadMe.md

File metadata and controls

30 lines (22 loc) · 593 Bytes

SwiftYoga

A simple Swift wrapper for yoga.

.package(url: "https://github.com/cntrump/SwiftYoga.git", .branch("main"))

Example code:

import SwiftYoga

let config = YGConfig()
// default flex direction is column
let root = YGNode(config: config) {
    $0.width = .point(100)
}

let leaf = YGNode(config: root.config) {
    $0.height = .point(50)
}
root.addSubnode(leaf)

// calculate layout
root.calculateLayout(width: YGUndefined, height: YGUndefined)

XCTAssertEqual(root.layout.width, 100)
XCTAssertEqual(root.layout.height, 50)