When embedding a Text(_:style:) View in a ScrollView, SwiftUI produces the following error:
A minimal example is this:
Code Block swift Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)
A minimal example is this:
Code Block swift struct ContentView: View { var body: some View { ScrollView { Text(.init() + 60, style: .relative) } } }