In the code shown below, I have a TextField that accepts user input. How do I add a drawable to the start or end of the TextField? I can't find any attribute for setting drawableStart or drawableEnd.
var text by rememberSaveable{ mutableStateOf("") }
TextField(
value = text,
modifier = Modifier
.fillMaxWidth(1f)
.padding(30.dp),
onValueChange = { text = it },
placeholder = { Text(text = "Email") },
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Email)
)