我尝试使用react-native-youtube
播放器。它可以在Android上使用,但不能在iOS模拟器中播放视频;它显示的是白框而不是视频。我已经运行了链接命令。
依赖项:
"dependencies": {
"react": "16.4.1",
"react-native": "0.56.0",
"react-native-youtube": "^1.1.0"
},
这是代码:
export default class PlayVideo extends React.Component {
render() {
const { videoId, history } = this.props;
return (
<YouTube
apiKey="API_KEY"
ref={item => this.player = item}
videoId="KVZ-P-ZI6W4"
controls={1}
play={true}
showFullscreenButton={false}
style={{ alignSelf: 'stretch', height: 300 }} />
);
}
}