[SwiftUI 开发] 隐藏删除 ScrollBar in ScrollView

ScrollView(showsIndicators:false) {
    // your content for scrollView
}

// or

ScrollView(.horizontal, showsIndicators:false) {
    // your content for scrollView
}

你可能感兴趣的:(SwiftUI,swiftui,ios,swift)