How can I hide/remove ScrollBar in ScrollView in SwiftUI? March 9, 2023 by Tarik You can use showsIndicators: false to hide the indicator: ScrollView(showsIndicators: false) { // ... }