SwiftUI 2.0 Nested ScrollView issue

Hi,

I tried to adopt SwiftUI 2.0 for my project, but unsuccessful.

My scene contains:
Code Block
ScrollView(.vertical) {
LazyVStack {
Item()
ScrollView(.horizontal) {
LazyHStack {
HorizontalItems()
}
}
ScrollView(.horizontal) {
LazyHStack {
HorizontalItemsAnother()
}
}
}
}

The issue consist in unable to scroll down because something with calculate content height is wrong :(