TransformableTextField

fun <Value> TransformableTextField(value: Value, onValueChange: (Value) -> Unit, transformer: Transformer<Value>, modifier: Modifier = Modifier, enabled: Boolean = true, readOnly: Boolean = false, textStyle: TextStyle = PreviewLabTheme.typography.input, keyboardOptions: KeyboardOptions = KeyboardOptions.Default, keyboardActions: KeyboardActions = KeyboardActions.Default, singleLine: Boolean = false, maxLines: Int = if (singleLine) 1 else Int.MAX_VALUE, minLines: Int = 1, visualTransformation: VisualTransformation = VisualTransformation.None, onTextLayout: TransformableTextFieldSlotScope.(TextLayoutResult) -> Unit = {}, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, placeholder: @Composable TransformableTextFieldSlotScope.() -> Unit? = null, prefix: @Composable TransformableTextFieldSlotScope.() -> Unit? = null, suffix: @Composable TransformableTextFieldSlotScope.() -> Unit? = null, label: @Composable TransformableTextFieldSlotScope.() -> Unit? = null, leadingIcon: @Composable TransformableTextFieldSlotScope.() -> Unit? = null, trailingIcon: @Composable TransformableTextFieldSlotScope.() -> Unit? = null, supportingText: @Composable TransformableTextFieldSlotScope.() -> Unit? = null, isError: Boolean? = null, shape: Shape = TextFieldDefaults.Shape, colors: TextFieldColors = TextFieldDefaults.colors(), cursorBrush: Brush = SolidColor(colors.cursorColor(isError == true).value))