is it possible to vertically center `Text` if you ...
# compose
p
is it possible to vertically center
Text
if you set it specific height, if you set
Modifier.defaultMinSize(100.dp)
?
without wrapping it into a Column or smth
a
Maybe add a
.wrapContentSize(Alignment.Center)
?
p
yeah, seems to do the job, thanks 🍻