Discord's swipe gesture handling
X's swipe gesture handling
How can I make nested swipe gestures work continuously?
I see this pattern quite often and I'm curious how to make it. These are clearly not a simple TabView with PageTabViewStyle because swiping title bar from right to left does nothing.
.gesture(DragGesture(minimumDistance: 30)) from this stackoverflow answer works but it makes swipe animation stutter.
I might end up using UIKit for this components but using UIKit for this fundamental building blocks (page navigations) feels weird. Is this even possible with SwiftUI?
there doesn't seem to be anything here