视频不覆盖整个屏幕

Video not covering the whole screen

我想让我的视频覆盖整个屏幕,但它似乎只覆盖了一半屏幕,如下所示

我将视频组件的样式设置如下:

 <Video
                source={{uri: this.state.video}}
                style={{
                  position: 'absolute',
                  top: 0,
                  left: 0,
                  alignItems: 'stretch',
                  bottom: 0,
                  right: 0,
                  height: Dimensions.get('window').width,
                }}
                resizeMode="cover"
                repeat={true}
              />

谁能告诉我如何实现这种行为以及我哪里出错了? 任何帮助都会有用。

不知何故,给出高度解决了上述问题,如下所示:

  <Video
                source={{uri: this.state.video}}
                style={{
                  position: 'absolute',
                  top: 0,
                  left: 0,
                  alignItems: 'stretch',
                  bottom: 0,
                  right: 0,
                  height: "90%",
                }}
                resizeMode="cover"
                repeat={true}
          
              />