moko-fields icon indicating copy to clipboard operation
moko-fields copied to clipboard

Input forms for mobile (android & ios) Kotlin Multiplatform development

Results 5 moko-fields issues
Sort by recently updated
recently updated
newest added

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))...

enhancement

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.

fixed fields list validation function, updated to 0.13.0

bug

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...

bug