Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 534 Bytes

File metadata and controls

21 lines (15 loc) · 534 Bytes

UI Customization

iOS

In Xcode create swift class 'AdyenAppearance' and extend the protocol 'AdyenAppearanceProvider'. SDK will use reflection to find the class with this exact name.

import Adyen
import adyen_react_native

class AdyenAppearance: AdyenAppearanceProvider {
  static func createStyle() -> Adyen.DropInComponent.Style {
     # provide your custom style here
  }
}

Android

Follow the Android SDK Customization docs.