가장 작은 예제는 아래와 같습니다.
import { YoutubeView, useYouTubePlayer } from 'react-native-youtube-bridge'; function App() { const player = useYouTubePlayer('AbZH7XWDW_k'); return <YoutubeView player={player} />; }
const playerA = useYouTubePlayer('AbZH7XWDW_k'); const playerB = useYouTubePlayer({ videoId: 'AbZH7XWDW_k' }); const playerC = useYouTubePlayer({ url: 'https://www.youtube.com/watch?v=AbZH7XWDW_k' });
const player = useYouTubePlayer('AbZH7XWDW_k', { autoplay: true, controls: true, playsinline: true, rel: false, muted: true, });