Files
react-native-video/ios/core/Extensions/AVPlayerViewController+Fullscreen.swift
2025-10-12 17:21:22 +02:00

22 lines
559 B
Swift

//
// AVPlayerViewController+Fullscreen.swift
// ReactNativeVideo
//
// Created by Krzysztof Moch on 27/04/2025.
//
import Foundation
import AVKit
extension AVPlayerViewController {
// https://stackoverflow.com/a/64466924
func enterFullscreen(animated: Bool) {
performIfResponds(NSSelectorFromString("enterFullScreenAnimated:completionHandler:"), with: animated, with: nil)
}
func exitFullscreen(animated: Bool) {
performIfResponds(NSSelectorFromString("exitFullScreenAnimated:completionHandler:"), with: animated, with: nil)
}
}