Ios swift – SwiftUI Divider widens its parent view too much
SwiftUI Divider behaves as if it has frame(maxWidth: .infinity). So it widens its parent view. How can I prevent Divider from widening its parent view in the below code? HStack { VStack { Text("AAA") Divider() Text("BBB") } .background(Color.orange) Text("BodyBodyBodyBodyBodyBodyBodyBodyBodyBody") .frame(maxWidth:…