Fix player size when orientation is locked

This commit is contained in:
Arkadiusz Fal 2022-08-15 01:13:39 +02:00
parent 2edab536a6
commit aac760a870

View File

@ -223,7 +223,8 @@ struct VideoPlayerView: View {
}
var playerHeight: Double? {
fullScreenLayout ? UIScreen.main.bounds.size.height - (OrientationTracker.shared.currentInterfaceOrientation.isPortrait ? (SafeArea.insets.top + SafeArea.insets.bottom) : 0) : nil
let lockedPortrait = player.lockedOrientation?.contains(.portrait) ?? false
return fullScreenLayout ? UIScreen.main.bounds.size.height - (OrientationTracker.shared.currentInterfaceOrientation.isPortrait || lockedPortrait ? (SafeArea.insets.top + SafeArea.insets.bottom) : 0) : nil
}
var playerEdgesIgnoringSafeArea: Edge.Set {
@ -372,10 +373,6 @@ struct VideoPlayerView: View {
}
var fullScreenLayout: Bool {
if player.currentItem.isNil {
return false
}
#if os(iOS)
return player.playingFullScreen || verticalSizeClass == .compact
#else