-
-
Notifications
You must be signed in to change notification settings - Fork 9
Loops
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) }
)
])
}