Last active
October 23, 2024 09:43
-
-
Save defagos/93bb4ee5bbc480347750b4a3543b2bf8 to your computer and use it in GitHub Desktop.
Vertical scroll navigation with paging (iOS 17)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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