FieldName
A type alias for field names used to uniquely identify fields within a form.
Field names are string identifiers that allow the form system to track and manage individual fields. They are used for validation, error reporting, and dependency management between fields.
Usage:
form.Field(
name = "email", // FieldName
selector = { it.email },
updater = { copy(email = it) }
) { fieldControl ->
// Field UI
}
Content copied to clipboard