PollQuestionInput

fun PollQuestionInput(modifier: Modifier = Modifier, title: String = stringResource(id = R.string.stream_compose_poll_questions_title), question: String, onQuestionChanged: (String) -> Unit)

Poll option's question Composable that consist of the title and PollOptionInput.

Parameters

modifier

The Modifier for styling.

title

Title to display on the top.

question

The question strings to reflect user inputs.

onQuestionChanged

The lambda parameter to apply user input changes.