1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 22:30:32 +05:30

Close overlays on exiting full screen

This commit is contained in:
Arkadiusz Fal 2022-08-13 16:18:27 +02:00
parent 4a1ae0620e
commit 48b35988ae

View File

@ -276,16 +276,23 @@ struct VideoPlayerView: View {
#endif
}
}
.onChange(of: fullScreenLayout) { newValue in
if !newValue { playerControls.presentingDetailsOverlay = false }
}
#if os(iOS)
.statusBar(hidden: fullScreenLayout)
#endif
}
var fullScreenLayout: Bool {
if player.currentItem.isNil {
return false
}
#if os(iOS)
player.playingFullScreen || verticalSizeClass == .compact
return player.playingFullScreen || verticalSizeClass == .compact
#else
player.playingFullScreen
return player.playingFullScreen
#endif
}