FormEvent

public enum FormEvent

Represents events triggered by the card details entry form.

Used in card views as a callback message to communicate user actions or form status updates.

  • Indicates that the form or a specific field within the form was selected.

    Declaration

    Swift

    case selection
  • Indicates whether the data in the form are fully filled and completed.

    Declaration

    Swift

    case completion(isComplete: Bool)

    Parameters

    isComplete

    A Boolean value that specifies if the form is complete. true means the form is completed, and false means it is not.