DLMobile Checkout Theme
data class DLMobileCheckoutTheme(val formStyle: DLFormStyle = DLFormStyle.DEFAULT, val textColor: Pair<Int, Int>? = null, val titleColor: Pair<Int, Int>? = null, val titleSize: Int? = null, val buttonText: String? = null, val labelColor: Pair<Int, Int>? = null, val hintColor: Pair<Int, Int>? = null, val outlineColor: Pair<Int, Int>? = null, val fillColor: Pair<Int, Int>? = null, val errorColor: Pair<Int, Int>? = null, val buttonTextColor: Pair<Int, Int>? = null, val buttonTextSize: Int? = null, val buttonBackgroundColor: Pair<Int, Int>? = null, val backgroundColor: Pair<Int, Int>? = null, val scanColor: Pair<Int, Int>? = null, val scanTextSize: Int? = null)
Defines the theme for the checkout form interface. You customize your checkout experience by creating an instance of this class and setting up the values you want to customize.
Constructors
Link copied to clipboard
constructor(formStyle: DLFormStyle = DLFormStyle.DEFAULT, textColor: Pair<Int, Int>? = null, titleColor: Pair<Int, Int>? = null, titleSize: Int? = null, buttonText: String? = null, labelColor: Pair<Int, Int>? = null, hintColor: Pair<Int, Int>? = null, outlineColor: Pair<Int, Int>? = null, fillColor: Pair<Int, Int>? = null, errorColor: Pair<Int, Int>? = null, buttonTextColor: Pair<Int, Int>? = null, buttonTextSize: Int? = null, buttonBackgroundColor: Pair<Int, Int>? = null, backgroundColor: Pair<Int, Int>? = null, scanColor: Pair<Int, Int>? = null, scanTextSize: Int? = null)