in OutlinedTextField I want to show error and use ...
# compose
n
in OutlinedTextField I want to show error and use this code:
Copy code
OutlinedTextField(
            value = email,
            isError = emailContainsError,
            label = { Text(emailErrorText) }
        )
but it gives me the following result I got the desired result only when get focus: how to show the error without focusing?