SwiftUI 2.0 ScrollView

Hi,

ScrollView in horizontal how to scroll items one by one?

Code Block
ScrollView(.horizontal, showsIndicators: false){
  ScrollViewReader { value in
LazyHGrid(rows: rows, spacing: 20) {
VStack{
...
}
.frame(width: UIScreen.main.bounds.width)
}
}
}


when I swipe its keep scrolling :(
SwiftUI 2.0 ScrollView
 
 
Q