Skip to content
S4cha edited this page May 8, 2017 · 1 revision

What's awesome with components is that it's super simple to create "loopy" views:

func render() -> Node {
    let items = ["Hello", "How", "Are", "You?"]
    return
        View(style: { $0.backgroundColor = .white }, [
            VerticalStack(style: { $0.spacing = 40 }, layout: { $0.centerInContainer() },
                items.map { Label($0) }
            )
        ])
}
Clone this wiki locally