CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface ChangelogOverlayConfig

    Visual and behavioral settings for the modal What's-New changelog overlay.

    const overlayConfig: ChangelogOverlayConfig = {
    title: "What's New in v2.0",
    subtitle: 'Discover our latest improvements',
    entryCount: 3,
    primaryButton: 'Got it',
    closeButton: 'Dismiss',
    };
    interface ChangelogOverlayConfig {
        closeButton: string;
        entryCount: number;
        primaryButton: string;
        subtitle?: string;
        title: string;
    }
    Index
    closeButton: string

    Label text for the secondary close/dismiss button.

    entryCount: number

    Maximum number of recent changelog entries to render (clamped between 1 and 10).

    primaryButton: string

    Label text for the primary confirmation button.

    subtitle?: string

    Optional explanatory subtitle displayed below the title.

    title: string

    Primary title displayed at the top of the modal sheet.