LargeImageUIStyle
LargeImageUIStyle is only available in AEP SDK BOM version 3.15.0+.
Class representing the style for a large image Adobe Experience Platform UI.
Public Properties
Property | Type | Description |
---|---|---|
cardStyle | The style for the card. | |
rootColumnStyle | The style for the root column. | |
imageStyle | The style for the image. | |
textColumnStyle | The style for the column containing the title, body and buttons. | |
titleTextStyle | The text style for the title. | |
bodyTextStyle | The text style for the body. | |
buttonRowStyle | The style for the row containing the buttons. | |
buttonStyle | Array<AepButtonStyle> | The style for the buttons. |
dismissButtonStyle | The style for the dismiss button. | |
dismissButtonAlignment | The alignment for the dismiss button. |
Customization
The LargeImageUIStyle
is created using a builder. Here's an example:
Kotlin
Copied to your clipboardval largeImageStyle = LargeImageUIStyle.Builder().cardStyle(AepCardStyle(modifier = Modifier.width(420.dp))).imageStyle(AepImageStyle(contentScale = ContentScale.Fit)).titleAepTextStyle(AepTextStyle()).bodyAepTextStyle(AepTextStyle()).buttonRowStyle(AepRowStyle()).build()