mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
Improve PiP close animation
This commit is contained in:
parent
a0088e5404
commit
152a79d44f
@ -1,5 +1,6 @@
|
||||
import AVKit
|
||||
import Foundation
|
||||
import SwiftUI
|
||||
|
||||
final class PiPDelegate: NSObject, AVPictureInPictureControllerDelegate {
|
||||
var player: PlayerModel!
|
||||
@ -45,16 +46,23 @@ final class PiPDelegate: NSObject, AVPictureInPictureControllerDelegate {
|
||||
) {
|
||||
var delay = 0.0
|
||||
#if os(iOS)
|
||||
if player.currentItem.isNil {
|
||||
if !player.presentingPlayer {
|
||||
delay = 0.5
|
||||
}
|
||||
if player.currentItem.isNil {
|
||||
delay = 1
|
||||
}
|
||||
#endif
|
||||
|
||||
if !player.currentItem.isNil, !player.musicMode {
|
||||
player?.show()
|
||||
}
|
||||
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + delay) {
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
|
||||
withAnimation(.linear(duration: 0.3)) {
|
||||
self?.player.playingInPictureInPicture = false
|
||||
}
|
||||
|
||||
completionHandler(true)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user