DecisionInteractiveDialogContent
fun DecisionInteractiveDialogContent(title: String, text: String, confirmActionText: String, dismissActionText: String, onConfirmAction: () -> Unit = {}, onDismissRequest: () -> Unit = {}, content: @Composable () -> Unit = {})(source)
Renders the DecisionInteractiveDialogContent UI for the SDAI presentation layer.
Author
Dmitriy Moroz
Parameters
title
title value consumed by the API.
text
text value consumed by the API.
confirmActionText
confirm action text value consumed by the API.
dismissActionText
dismiss action text value consumed by the API.
onConfirmAction
callback invoked by the component.
onDismissRequest
callback invoked by the component.
content
content value consumed by the API.