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:
Arkadiusz Fal
2025-11-22 20:11:14 +01:00
parent 73295e726a
commit 5f53e53c7a
3 changed files with 21 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ enum Constants {
static let overlayAnimation = Animation.linear(duration: 0.2)
static let aspectRatio16x9 = 16.0 / 9.0
static let aspectRatio4x3 = 4.0 / 3.0
static let notificationCenterZoneHeight: Double = 60
static var isAppleTV: Bool {
#if os(iOS)