For AI agents: the complete documentation index is available at /ko/llms.txt, the full documentation bundle is available at /ko/llms-full.txt, and this page is available as Markdown at /ko/guide/getting-started/quick-start.md.
  • 한국어
  • 2.x
  • 빠른 시작

    예제 & 데모

    가장 작은 예제는 아래와 같습니다.

    import { YoutubeView, useYouTubePlayer } from 'react-native-youtube-bridge';
    
    function App() {
      const player = useYouTubePlayer('AbZH7XWDW_k');
    
      return <YoutubeView player={player} />;
    }

    source 입력 형태

    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,
    });

    다음 단계