You can disable clipping with help of Introspect for SwiftUI https://github.com/siteline/SwiftUI-Introspect
Using it you can get underlying UIKit objects. In your case simply add this to the ScrollView.
ScrollView(.horizontal, showsIndicators: false) {
//.....
}
.introspectScrollView { view in
view.clipsToBounds = false
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: