macOS, iOS
[SwiftUI] TabView 내부 scroll 막기
SweetDev
2021. 3. 20. 16:02
stackoverflow.com/questions/64091415/how-to-disable-vertical-scroll-in-tabview-with-swiftui
How to disable vertical scroll in TabView with SwiftUI?
I have set up a TabView in my application, so that I can swipe horizontally between multiple pages, but I also have an unwanted vertical scroll that may appear, with a bounce effect so. How can I d...
stackoverflow.com
.onAppear(perform: {
UIScrollView.appearance().bounces = false
})