Xcode – Simple SwiftUI code yields: UIViewAlertForUnsatisfiableConstraints. Why?
Environment: Xcode Version 12.4 (12D4e) Scenario: I found one area that apparently has constraint violations. I narrowed it down to the .navigationTitle. import SwiftUI struct ContentView: View { var body: some View { NavigationView { VStack { Text("Hello World") }.navigationTitle("Turkey")…