I created a UIHostingController to put a SwiftUI view in my app. The root view contains a VStack, and inside that some HStacks and Pickers. The picker pushes the view wider than the screen. I can see in Xcode (Debug View Hierarchy) that my screen is 320 (iPhone SE) and my SwiftUI View is 328. Usually I would fix this with auto layout constraints pinning left and right edges to parent with priority 1000. What is the equivalent in SwiftUI?
Rob