Text(_ : Date, style: DateStyle) crashes when nested within ScrollView

Hi there,

Encountered a problem where Text views initiated by Text(: style:) will crash when nested within a ScrollView.

Sample:

Code Block
struct TimerGridView: View {
    var body: some View {
        ScrollView(.vertical, showsIndicators: false) {
                    Text(Date().addingTimeInterval(20), style: .timer)
        }
    }
}

Replies

Please file a feedback on https://feedbackassistant.apple.com and include a sysdiagnose. To create a sysdiagnose hold shift, control, option, and command, and press . (period). Your screen will flash briefly and a Finder window will open 15-30s later. Please attach the zipped file to your feedback; it helps us track down the problem.