How to disable ScrollView Bounce In SwiftUI

try using this line of code: UIScrollView.appearance().bounces = false You can use it like this:- struct RoomDetailsView: View { init() { UIScrollView.appearance().bounces = false } var body: some View { ScrollView(showsIndicators: false) { Image(“test”) Text(“Hello Text”) … … } } } Or you can write this line in AppDelegate to apply this behaviour throughout into … Read more