AdaptyUIDialog

data class AdaptyUIDialog(val primaryActionTitle: String, val title: String? = null, val content: String? = null, val secondaryActionTitle: String? = null)

Represents a dialog that can be shown in the UI, typically for alerts, confirmations, or information.

Constructors

Link copied to clipboard
constructor(primaryActionTitle: String, title: String? = null, content: String? = null, secondaryActionTitle: String? = null)

Properties

Link copied to clipboard
val content: String? = null

The optional dialog content/message.

Link copied to clipboard

The title of the primary action button.

Link copied to clipboard

The optional secondary action button title.

Link copied to clipboard
val title: String? = null

The optional dialog title.