react-native-youtube-iframe
설치
yarn add react-native-youtube-iframe react-native-webview
사용법
import YoutubePlayer from "react-native-youtube-iframe";
export default function App () {
const [isPlay, setIsPlay] = useState<boolean>(false);
return (
<YoutubePlayer height={300} play={isPlay} videoId={"iee2TATGMyI"} />
)
}