I\'m embedding a view controller with variable-height UITextView inside a parent SwiftUI VStack and the view controller sizes it\'s frame to the whole screen be
UITextView
Add fixedSize may solve this. .fixedSize(horizontal: false, vertical: true)
.fixedSize(horizontal: false, vertical: true)