PlexySDK DOCS
iOS SDK

Components

Build a custom checkout flow with individual Plexy payment components

Components

When Drop-in's pre-built UI doesn't fit, present individual Plexy Components and orchestrate the flow yourself. Each Component is a UIViewController that handles its own validation and reports through a delegate.

let cardComponent = CardComponent(
    paymentMethod: cardPaymentMethod,
    context: context,
    configuration: CardComponent.Configuration()
)
cardComponent.delegate = self
present(cardComponent.viewController, animated: true)

Available Components include CardComponent, ApplePayComponent, and country-specific methods.

On this page