OutlinedTextField changes height when text is ente...
# compose
d
OutlinedTextField changes height when text is entered
a
I had the same issue, it was fixed by removing the line height of the custom font that I have used. I Still don't know what's the root cause.
d
Looks like it, thank you, setting this textStyle on OutlinedTextField fixes it:
Copy code
textStyle = MaterialTheme.typography.bodyLarge.copy(lineHeight = TextUnit.Unspecified),
👍 1
a
Please file a bug with a minimum repro and a compose version