mirror of
https://github.com/zoriya/react-native-video.git
synced 2025-12-06 07:16:12 +00:00
16 lines
359 B
Swift
16 lines
359 B
Swift
//
|
|
// HybridVideoPlayerFactory.swift
|
|
// ReactNativeVideo
|
|
//
|
|
// Created by Krzysztof Moch on 09/10/2024.
|
|
//
|
|
|
|
import Foundation
|
|
import NitroModules
|
|
|
|
class HybridVideoPlayerFactory: HybridVideoPlayerFactorySpec {
|
|
func createPlayer(source: HybridVideoPlayerSourceSpec) throws -> HybridVideoPlayerSpec {
|
|
return try HybridVideoPlayer(source: source)
|
|
}
|
|
}
|