Text(_ : Date, style: DateStyle) displays "..." if text grows beyond initial size for style `.relative`

The new Text(_ : Date, style: DateStyle) element displays "..." if the text grows beyond its initial size for style .relative.

Code Block swift
Text(Date(), style: .relative)


Is this a bug or am I missing an important part in the description? (Something like .frame(width: 120) didn't help).
Answered by in 618188022
Hi Labradon, this is a known issue we are looking in to.
This is all the view code required to reproduce the issue. Specifying a fixed frame as a workaround didn't help either.

Code Block swift
struct ContentView: View {
  var body: some View {
Text(Date(), style: .relative)
}

Accepted Answer
Hi Labradon, this is a known issue we are looking in to.
This is still happening on the GM build 🙁
Text(_ : Date, style: DateStyle) displays "..." if text grows beyond initial size for style `.relative`
 
 
Q