mirror of
https://github.com/yattee/yattee.git
synced 2025-11-25 10:48:17 +00:00
Fix iOS fullscreen gesture collision with notification center
In fullscreen playback, swipe-down and timeline seek gestures now respect a 60pt safe zone at the top of the screen, allowing the system notification center gesture to work without triggering app gestures.
This commit is contained in:
@@ -199,6 +199,16 @@ struct TimelineView: View {
|
||||
.gesture(
|
||||
DragGesture(minimumDistance: 5, coordinateSpace: .global)
|
||||
.onChanged { value in
|
||||
#if os(iOS)
|
||||
// In fullscreen, ignore gestures that start in the top notification center area
|
||||
// to allow system notification center gesture to work
|
||||
if player.playingFullScreen {
|
||||
if value.startLocation.y < Constants.notificationCenterZoneHeight {
|
||||
return
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
if !dragging {
|
||||
controls.removeTimer()
|
||||
draggedFrom = current
|
||||
|
||||
Reference in New Issue
Block a user