Marcin Wisniowski
06/08/2024, 8:57 PM|Some long text is cu|
I am getting this:
|Some long text is |
The last word is not rendered at all. I thought TextOverflow.Visible
would be the behavior I want, but it doesn't change it.ephemient
06/09/2024, 5:44 AMModifier
.clipToBounds()
.wrapContentWidth(align = Alignment.Start, unbounded = true)
the way you want it to clip?Dan MacNeil
06/10/2024, 3:27 PMsoftWrap = false,
Marcin Wisniowski
06/10/2024, 3:38 PMwrapContentWidth
and softWrap = false
works, and both need clipToBounds()
as well.ephemient
06/10/2024, 3:46 PMDan MacNeil
06/10/2024, 3:52 PM.fillMaxWidth(0.5f)
in my test instead of clipToBounds()
. More than one way to do it i guess.Marcin Wisniowski
06/10/2024, 4:25 PM