Appearance

data class Appearance(@ColorInt val themeColor: Int? = null, val isDarkTheme: Boolean? = null) : Parcelable

Payment UI appearance configuration. Use this to customize the theme color and dark mode preference for the Airwallex SDK UI.

Parameters

themeColor

Optional theme color in ARGB format (e.g., 0xFF612FFF)

isDarkTheme

Optional dark theme preference. If null, follows system setting

Constructors

Link copied to clipboard
constructor(@ColorInt themeColor: Int? = null, isDarkTheme: Boolean? = null)

Properties

Link copied to clipboard
val isDarkTheme: Boolean? = null
Link copied to clipboard
val themeColor: Int? = null

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)