ProgressDialog

fun ProgressDialog(title: UiText = Localization.string("communicating_progress_title").asUiText(), subTitle: UiText = Localization.string("communicating_progress_sub_title").asUiText(), canDismiss: Boolean = true, onDismissRequest: () -> Unit = {}, waitTimeSeconds: Int? = null, positionInQueue: Int? = null, step: Pair<Int, Int>? = null, content: @Composable () -> Unit? = null)(source)

Renders the ProgressDialog UI for the SDAI presentation layer.

Author

Dmitriy Moroz

Parameters

title

title value consumed by the API.

subTitle

sub title value consumed by the API.

canDismiss

can dismiss value consumed by the API.

onDismissRequest

callback invoked by the component.

waitTimeSeconds

wait time seconds value consumed by the API.

positionInQueue

position in queue value consumed by the API.

step

step value consumed by the API.

content

content value consumed by the API.