We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
https://gist.github.com/stakancheck/85013d753dc198db1724140155bac889
Sorry, something went wrong.
The solution has been updated and support for the error state has been added.
No branches or pull requests
here snippet with useful api:
but in this case we not receive updated of FormField on UI. works only UI -> FormField updates. FormField -> UI updated not implemented
The text was updated successfully, but these errors were encountered: