ConfirmationPopUp

@Composable
fun ReversiScope.ConfirmationPopUp(title: String, message: String, onConfirmText: String = "Confirm", onDismissText: String = "Cancel", onConfirm: () -> Unit? = null, onDismiss: () -> Unit? = null, modifier: Modifier = Modifier)

Modal popup for confirming user actions.

Parameters

message

The confirmation message to display.\

onConfirm

Callback invoked when the user confirms the action.

onDismiss

Callback invoked when the popup is closed without selection.