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.
The Text seems stop expending itself. Is this the limitation or I missed something?
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?