Widget can't display large Text?

I am trying to show a large text on Widget, larger than .largeTitle, and I notice when the text size exceed 48, the widget shows blank screen, and it come back when I change the text size to 47.
Code Block
struct TestView: View {
    var body: some View {
Text("Hi").font(.system(size: 48))
}
}
struct TestView_Previews: PreviewProvider {
    static var previews: some View {
TestView()
.previewContext(WidgetPreviewContext(family: .systemSmall))
}
}

The Text seems stop expending itself. Is this the limitation or I missed something?

Answered by dibbleme in 643306022
Okay, it works with device, I think it's a bug on simualtor.
Accepted Answer
Okay, it works with device, I think it's a bug on simualtor.
Same here. The max font size is 70 on my MacBook Pro 2015, and 47 on my Mac mini 2020, with Xcode 12.1 and iOS 14.1 simulator.
My MacBook2015 12'':simulator

The max font size is 47




Widget can't display large Text?
 
 
Q