I have a macOS app built with SwiftUI, that targets macOS 11.
In this app I have a ScrollView that contains several other ScrollViews, but these are only scrollable horizontally.
If I mouse over these views, I cannot scroll up/down in the parent view. Only If I move the mouse pointer away from these views, I can scroll.
I want it like, if the user scrolls up/down in the horizontal ScrollViews, the scroll event should be passed to the parent view.
Is there a way I can fix this?
In this app I have a ScrollView that contains several other ScrollViews, but these are only scrollable horizontally.
If I mouse over these views, I cannot scroll up/down in the parent view. Only If I move the mouse pointer away from these views, I can scroll.
I want it like, if the user scrolls up/down in the horizontal ScrollViews, the scroll event should be passed to the parent view.
Is there a way I can fix this?