ImageOnlyUIStyle
ImageOnlyUIStyle is only available in AEP SDK BOM version 3.15.0+.
Class representing the style for an image-only Adobe Experience Platform UI.
Public Properties
Property | Type | Description |
---|---|---|
cardStyle | The style for the card. | |
imageStyle | The style for the image. | |
dismissButtonStyle | The style for the dismiss button. | |
dismissButtonAlignment | The alignment for the dismiss button. |
Customization
The ImageOnlyUIStyle
is created using a builder. Here's an example:
Kotlin
Copied to your clipboardval imageOnlyStyle = ImageOnlyUIStyle.Builder().cardStyle(AepCardStyle(modifier = Modifier.width(320.dp))).imageStyle(AepImageStyle(contentScale = ContentScale.Fit)).build()