Skip to content

Instantly share code, notes, and snippets.

@defagos
Last active October 23, 2024 09:43
Show Gist options
  • Save defagos/93bb4ee5bbc480347750b4a3543b2bf8 to your computer and use it in GitHub Desktop.
Save defagos/93bb4ee5bbc480347750b4a3543b2bf8 to your computer and use it in GitHub Desktop.
Vertical scroll navigation with paging (iOS 17)
import SwiftUI
struct ContentView: View {
var body: some View {
ScrollView {
VStack(spacing: 0) {
Group {
Color.red
Color.yellow
}
.containerRelativeFrame(.vertical)
}
}
.scrollTargetBehavior(.paging)
.ignoresSafeArea()
}
}
#Preview {
ContentView()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment