Shouldn't `textAlign = TextAlign.Justify` mean the...
# compose
a
Shouldn't
textAlign = TextAlign.Justify
mean the whitespace is stretched to fill the width? Or am I misunderstanding
TextAlign.Justify
?
Copy code
Text(
  "heebie-jeebies ".repeat(4),
  Modifier.fillMaxWidth().background(Color.Yellow),
  textAlign = TextAlign.Justify
)
You may need to click the image to see the image. I have no idea why that keeps happening. It display blank on my computer until I click on it.
497 Views