SwiftUI-Flow
                                
                                
                                
                                    SwiftUI-Flow copied to clipboard
                            
                            
                            
                        Incorrect bounds on VFlow if using .frame(maxHeight:)
If using maxHeight instead of height on a VFlow in a ScrollView, the bounds is incorrect and the view is cut off.
    ScrollView {
        VFlow {
            ForEach(1...21, id: \.self) {
                Text("Item \($0)")
                    .padding(4)
                    .background(.orange)
            }
        }
        .frame(maxHeight: 300) 
        .padding(16)
    }
.frame(maxHeight: 300)
.frame(height: 300)`: