On iOS 16.3 the ScrollView
component can enable paging by setting the following:
UIScrollView.appearance().isPagingEnabled = true
However, after updating to iOS 16.4, this no longer enables paging on the ScrollView
. Are there any workarounds to make this solution work? or are there alternative ways to build vertical paging in SwiftUI? I'm familiar with workarounds using TabView
but I cannot use that in this project for other reasons.