ChipTextFieldWithItem
fun ChipTextFieldWithItem(modifier: Modifier = Modifier, textFieldValueState: MutableState<TextFieldValue>, label: UiText, list: List<String>, onItemClick: (type: Int, item: String) -> Unit = { _, _ -> }, onEvent: (event: ChipTextFieldEvent<String>) -> Unit)(source)
Renders the ChipTextFieldWithItem UI for the SDAI presentation layer.
Author
Dmitriy Moroz
Parameters
modifier
Compose modifier applied to the rendered UI.
textFieldValueState
text field value state value consumed by the API.
label
label value consumed by the API.
list
list value consumed by the API.
onItemClick
callback invoked by the component.
onEvent
callback invoked by the component.