How do you vertical align text to the top of a Tex...
# compose
e
How do you vertical align text to the top of a TextField?
Column(Modifier.fillMaxSize(), Arrangement.spacedBy(5.dp)) {
Row(Modifier.preferredHeight(200.dp).padding(8.dp)) {
TextField(modifier = Modifier.fillMaxWidth().fillMaxHeight().align(<http://Alignment.Top|Alignment.Top>), value = output, onValueChange = {  })
}
}