Help with new Text() timer properties. Issue with truncated labels.

I am experimenting with using new timer Text component in SwiftUI. However the issue I am facing is that after a little bit of time the label will start getting truncated. I tried setting a

Code Block
.frame()
,
Code Block
.padding()


With no success.

Code Block
Text(Date().addingTimeInterval(0), style: .relative)


Is this a bug or what is the right way to handle this?

Thanks!

Replies

Seeing this as well with the style timer. I should have more than enough width but it seems to add ellipsis. Wondering if it’s a bug too
Does it help if you apply .layoutPriority(1) modifier to the Text?