We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87e0c7b commit c1fb274Copy full SHA for c1fb274
1 file changed
iterableapi-ui/src/main/java/com/iterable/iterableapi/ui/embedded/IterableEmbeddedViewConfig.kt
@@ -3,15 +3,15 @@ package com.iterable.iterableapi.ui.embedded
3
import android.widget.ImageView
4
5
data class IterableEmbeddedViewConfig(
6
- val backgroundColor: Int?,
7
- val borderColor: Int?,
8
- val borderWidth: Int?,
9
- val borderCornerRadius: Float?,
10
- val primaryBtnBackgroundColor: Int?,
11
- val primaryBtnTextColor: Int?,
12
- val secondaryBtnBackgroundColor: Int?,
13
- val secondaryBtnTextColor: Int?,
14
- val titleTextColor: Int?,
15
- val bodyTextColor: Int?,
+ val backgroundColor: Int? = null,
+ val borderColor: Int? = null,
+ val borderWidth: Int? = null,
+ val borderCornerRadius: Float? = null,
+ val primaryBtnBackgroundColor: Int? = null,
+ val primaryBtnTextColor: Int? = null,
+ val secondaryBtnBackgroundColor: Int? = null,
+ val secondaryBtnTextColor: Int? = null,
+ val titleTextColor: Int? = null,
+ val bodyTextColor: Int? = null,
16
val imageScaleType: ImageView.ScaleType? = null
17
)
0 commit comments