Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 532 Bytes

Customization.md

File metadata and controls

21 lines (15 loc) · 532 Bytes

UI Customization

iOS

In Xcode create swift class 'AdyenAppearance' extending 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.