Hi there,
Encountered a problem where Text views initiated by Text(: style:) will crash when nested within a ScrollView.
Sample:
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) } } }