反应本机视频全屏控制

react native video fullscreen controll

我在我的应用程序中使用 react-native-video.It 效果很好但在 android 我没有全屏 控制。我必须做一个自定义控件还是我忘记了什么? 这是我的播放器代码:

  <Video
      key={`player-${retryCount}`}
      ref={ref => {this._player = ref}}
      style={[styles.container, style, {height: this.state.height}]}
      paused={retryCount === 0}
      source={{uri: source.url}}
      progressUpdateInterval={3000}
      controls
      onError={ this._onError }
      onProgress={ this._onProgress }
      resizeMode={'stretch'}
      onLoad={this._setHeight}/>

android 上的控件在全屏 react-native-video 上不可用,因此您必须制作自己的自定义控件或可以使用这些库。

react-native-video-player

react-native-video-controls