Avatar
A property wrapper type that supports creating bindings to the mutable properties of observable objects.
11:18 PM
struct TitleEditView: View { @Environment(Book.self) private var book var body: some View { @Bindable var book = book TextField("Title", text: $book.title) } } (edited)