Skip to content

Commit c1fb274

Browse files
Default params for embedded config
1 parent 87e0c7b commit c1fb274

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

iterableapi-ui/src/main/java/com/iterable/iterableapi/ui/embedded/IterableEmbeddedViewConfig.kt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ package com.iterable.iterableapi.ui.embedded
33
import android.widget.ImageView
44

55
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?,
6+
val backgroundColor: Int? = null,
7+
val borderColor: Int? = null,
8+
val borderWidth: Int? = null,
9+
val borderCornerRadius: Float? = null,
10+
val primaryBtnBackgroundColor: Int? = null,
11+
val primaryBtnTextColor: Int? = null,
12+
val secondaryBtnBackgroundColor: Int? = null,
13+
val secondaryBtnTextColor: Int? = null,
14+
val titleTextColor: Int? = null,
15+
val bodyTextColor: Int? = null,
1616
val imageScaleType: ImageView.ScaleType? = null
1717
)

0 commit comments

Comments
 (0)