20ca367e3c
Feature/state object view |
||
---|---|---|
.github | ||
.swiftpm/xcode/package.xcworkspace/xcshareddata | ||
Sources/ObjectUI | ||
Tests/ObjectUITests | ||
.gitignore | ||
Package.swift | ||
README.md |
README.md
ObjectUI
Create SwiftUI Views with any data
Usage
import ObjectUI
Basic Example
struct ContentView: View {
var body: some View {
ObjectView { object in
VStack {
if let value = object.value(as: String.self) {
Text(value)
.font(.largeTitle)
} else {
Text("Waiting...")
}
Button("Wave") {
DispatchQueue.main.async {
object.set(value: "👋")
}
}
}
}
}
}
JSON Example
struct ContentView: View {
let json = """
{
"userId": 1,
"id": 2,
"title": "quis ut nam facilis et officia qui",
"completed": false
}
"""
.data(using: .utf8)
var body: some View {
ObjectView(data: json) { object in
VStack {
object.userId.value(as: Int.self).map { userId in
Text("\(userId)")
}
object.id.value(as: Int.self).map { id in
Text("\(id)")
}
object.title.value(as: String.self).map { title in
Text(title)
}
object.completed.value(as: Bool.self).map { completed in
Text(completed.description)
}
}
}
}
}