mirror of
https://github.com/yattee/yattee.git
synced 2024-12-22 13:33:42 +00:00
Fix opening player sheet
This commit is contained in:
parent
df96c2dba0
commit
7b48041165
@ -133,6 +133,13 @@ struct VideoPlayerView: View {
|
||||
#if os(iOS)
|
||||
.frame(width: playerWidth.isNil ? nil : Double(playerWidth!), height: playerHeight.isNil ? nil : Double(playerHeight!))
|
||||
.ignoresSafeArea(.all, edges: playerEdgesIgnoringSafeArea)
|
||||
.onChange(of: player.presentingPlayer) { newValue in
|
||||
if newValue {
|
||||
viewDragOffset = 0
|
||||
} else {
|
||||
viewDragOffset = Self.hiddenOffset
|
||||
}
|
||||
}
|
||||
.onAppear {
|
||||
viewDragOffset = 0
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user