Is it possible to set a `TextField` ’s text vertic...
# compose
n
Is it possible to set a
TextField
’s text vertical alignment to “top”? How? By default the text is in the middle. Setting
Modifier.align(<http://Alignment.Top|Alignment.Top>)
does not help.
z
i think there's a baseline alignment for text fields
a
I’m afraid you can’t do this at the moment using TextField. There is a new spec being implemented where the text will be aligned to the top for multiline text field. At the moment you can only achieve this using BasicTextField
n
Thanks @Anastasia [G], I will use upgrade to the latest alpha to use
BasicTextField
.