I have created a paging app With SwiftUI TabView with TabViewStyle: PageTabViewStyle.
In every page there is an UICollectionView holding a list of rows. Now I have used UIViewControllerRepresentable to show the view inside TabView.
It works okay, but the Scroll to top gesture doesn't work here when pressed in the iPhones StatusBar.
Is it a fault of TabView or I am missing Something?
It may happen because of TabViews Scroll property. In UIKIT Views We needed to disable the scrollToTop property of scrollviews (Other then the desired one) is there any public API's for SwiftUI Views in replacement for setting scrollsToTop
property?