-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
enhancementNew feature or requestNew feature or request
Description
here snippet with useful api:
struct Binder {
static func binding(field: FormField<NSString, StringDesc>) -> Binding<String> {
return Binding(
get: { String(field.data.value ?? "") },
set: { field.setValue(value: ($0 as NSString)) }
}
}
}but in this case we not receive updated of FormField on UI. works only UI -> FormField updates. FormField -> UI updated not implemented
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request