ChangelogOverlayConfig

data class ChangelogOverlayConfig(val title: String = "What's New", val subtitle: String = "", val entryCount: Int = 3, val primaryButton: String = "Continue", val closeButton: String = "Close")(source)

Copy, button label, and display count settings for the What's-New modal overlay (dev.cupthread.feedback.ui.ChangelogOverlay).

Constructors

Link copied to clipboard
constructor(title: String = "What's New", subtitle: String = "", entryCount: Int = 3, primaryButton: String = "Continue", closeButton: String = "Close")

Properties

Link copied to clipboard

Number of changelog entries guaranteed to be within the valid 1..10 range.

Link copied to clipboard

Label for the secondary dismissal button (e.g., "Close").

Link copied to clipboard

Desired number of changelog entries to present (coerced between 1 and 10).

Link copied to clipboard

Label for the main action button (e.g., "Continue").

Link copied to clipboard

Optional secondary description displayed under the header.

Link copied to clipboard

Header title displayed at the top of the What's-New sheet (e.g., "What's New").