反应本机图像背景不是全屏

React native imageBackground not full screen

我创建了 Wallpaper.js 我的背景图片在哪里。但是,它没有在我的模拟器上全屏显示。

我的Wallpaper.js

import React, { Component } from 'react';
import { StyleSheet, ImageBackground } from 'react-native';

import bgSrc from '../../images/wallpaper.png';

export default class Wallpaper extends Component {
  render() {
    return (
      <ImageBackground style={styles.picture} source={bgSrc}>
        {this.props.children}
      </ImageBackground>
    );
  }
}

const styles = StyleSheet.create({
  picture: {
    flex: 1,
    width: null,
    height: null,
    resizeMode: 'cover',
  },
});

我在我的登录页面中调用此墙纸:

export default class LoginScreen extends Component {
  render() {
    return (
      <Wallpaper>

      </Wallpaper>
    );
  }
}

结果是顶部的空白 space。为什么不是全屏?

谢谢

您必须检查导航器堆栈的 headerMode。必须是 'modal'