ConfirmDialog

fun ConfirmDialog(title: String, content: String, isVisible: Boolean, confirmButtonText: String, onClick: () -> Unit)

This composable is the confirmation dialog when the user is about to perform an important action and might want to confirm before proceeding.

Parameters

title

String the title of the dialog

content

String the content of the dialog

isVisible

Boolean whether the dialog is visible

confirmButtonText

String the text for the confirm button

onClick

() -> Unit the function to call when the user clicks the button