adjpd
09/29/2021, 7:28 PMtextAlign = TextAlign.Justify
mean the whitespace is stretched to fill the width? Or am I misunderstanding TextAlign.Justify
?
Text(
"heebie-jeebies ".repeat(4),
Modifier.fillMaxWidth().background(Color.Yellow),
textAlign = TextAlign.Justify
)
adjpd
09/29/2021, 9:07 PM