React Native Youtube Bridge
English | 한êµì–´
Overview
react-native-youtube-bridge provides a typed, hook-based YouTube player for React Native apps across iOS, Android, and Web.
Key Features
- YouTube IFrame Player API without native YouTube modules
-
useYouTubePlayer+YoutubeViewhook-based API - Typed events with
useYouTubeEvent - iOS, Android, and React Native Web support
- Inline HTML and external WebView rendering modes
- TypeScript support
Quick Start
Documentation
Full documentation is available at: https://react-native-youtube-bridge-docs.pages.dev
Examples & Demo
AI
Installation
npm install react-native-youtube-bridgeBasic Usage
import { YoutubeView, useYouTubePlayer } from 'react-native-youtube-bridge';
function App() {
const player = useYouTubePlayer('AbZH7XWDW_k');
return <YoutubeView player={player} />;
}For the complete guide, see the documentation.