ConfirmHereModalOptions

data class ConfirmHereModalOptions(val isVisible: Boolean = false, val message: String = "Are you still there?", val onConfirm: () -> Unit, val onTimeout: () -> Unit, val countdownSeconds: Int = 60, val backgroundColor: Int = 0xFFFFFFFF.toInt(), val warningColor: Int = 0xFFFF9800.toInt())

ConfirmHereModal - Presence confirmation dialog for inactive users.

Displays "Are you still there?" prompt to confirm user presence. Automatically triggers callback if not responded within timeout.

Constructors

Link copied to clipboard
constructor(isVisible: Boolean = false, message: String = "Are you still there?", onConfirm: () -> Unit, onTimeout: () -> Unit, countdownSeconds: Int = 60, backgroundColor: Int = 0xFFFFFFFF.toInt(), warningColor: Int = 0xFFFF9800.toInt())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val isVisible: Boolean = false
Link copied to clipboard
Link copied to clipboard
val onConfirm: () -> Unit
Link copied to clipboard
val onTimeout: () -> Unit
Link copied to clipboard