moko-fields
moko-fields copied to clipboard
Input forms for mobile (android & ios) Kotlin Multiplatform development
here snippet with useful api: ```swift struct Binder { static func binding(field: FormField) -> Binding { return Binding( get: { String(field.data.value ?? "") }, set: { field.setValue(value: ($0 as NSString))...
I'm using this forms and unable to set or prefill the value to the textfield, drop down and fields. I don't see anything on this in documentation.
The field validation mechanism needs to be fixed. Currently, it stops at the first field with an error, which prevents the rest from being validated. As a result, the user...