【发布时间】:2019-02-09 08:55:23
【问题描述】:
当我使用 this.props.navigation.push 到导航堆栈时,我的视频会继续在后台播放。有没有办法可以在我离开时暂停或停止视频?
<VideoPlayer
videoProps={{
shouldPlay: true,
resizeMode: Video.RESIZE_MODE_CONTAIN,
isMuted: false,
source: {
uri: this.props.navigation.state.params.video,
},
}}
isPortrait
playFromPositionMillis={0}
showFullscreenButton
switchToLandscape={() =>
ScreenOrientation.allowAsync(ScreenOrientation.Orientation.LANDSCAPE)
}
switchToPortrait={() =>
ScreenOrientation.allowAsync(ScreenOrientation.Orientation.PORTRAIT)
}
/>
如果需要任何进一步的细节来澄清,请告诉我。
【问题讨论】:
标签: react-native react-navigation expo