SwiftUI - List inside horizontal ScrollView on MacOS, unable to scroll horizontally

I'm trying to create a horizontal ScrollView, inside which there are many Lists that can scroll vertically.

like MacOS Finder app

The problem is, horizontal scroll is not happening if mouse scroll is triggered inside List.

My guess is that scroll event is captured by List, ScrollView has no chance to handle.
Code Block
ScrollView(.horizontal) {
List
List
List
...
}

Does any has any workaround?

It‘s a bug introduced in one of the latest Big Sur Betas (at least for me) ... No workaround found yet.
Just stumbled across a similar, probably the same issue. Items in an HStack, in a ScrollView. Does not scroll at all...
Have you filed a feedback already, so I can reference it in my Feedback?

Have you found a solution for this? I'm facing the same issue

SwiftUI - List inside horizontal ScrollView on MacOS, unable to scroll horizontally
 
 
Q