FieldMeta

interface FieldMeta(source)

Represents metadata for an individual form field.

This interface provides access to field-level state information including validation errors, validation mode, and user interaction state.

Inheritors

Properties

Link copied to clipboard
abstract val error: FieldError

The current validation error for this field, if any. Contains noFieldError if the field has no validation errors.

Link copied to clipboard
abstract val isTouched: Boolean

Whether the field has been touched (focused and then blurred) by the user.

Link copied to clipboard
abstract val isValidated: Boolean

Whether validation has been performed on this field at least once.

Link copied to clipboard

The current validation mode for this field. Determines when validation should be triggered (e.g., on blur, on change).