SetupTextField

internal fun SetupTextField(value: String, onValueChange: (String) -> Unit, label: String, modifier: Modifier = Modifier, enabled: Boolean = true, error: String? = null, keyboardType: KeyboardType = KeyboardType.Text, visualTransformation: VisualTransformation = VisualTransformation.None, trailingIcon: @Composable () -> Unit? = null)(source)

Renders the SetupTextField UI for the SDAI presentation layer.

Author

Dmitriy Moroz

Parameters

value

value value consumed by the API.

onValueChange

callback invoked by the component.

label

label value consumed by the API.

modifier

Compose modifier applied to the rendered UI.

enabled

enabled value consumed by the API.

error

error value consumed by the API.

keyboardType

keyboard type value consumed by the API.

visualTransformation

visual transformation value consumed by the API.

trailingIcon

trailing icon value consumed by the API.