我正在尝试使用react-native-youtube模块嵌入youtube视频但没有成功。我可以很好地构建我的react-native项目并且应用程序出现但是我看到的只是一个黑屏,视频播放器应该位于其中。
<View>
<YouTube
apiKey={API_KEY}
videoId={VIDEO_ID}
play
fullscreen
loop={false}
onReady={e => this.setState({ isReady: true })}
onChangeState={e => this.setState({ status: e.state })}
onChangeQuality={e => this.setState({ quality: e.quality })}
onError={e => this.setState({ error: e.error })}
style={{ alignSelf: 'stretch', height: 300 }}
/>
</View>