如何从SafeViewArea中删除上边距|反应本机| iPhoneX

时间:2019-01-30 09:27:16

标签: ios react-native iphone-x safearealayoutguide safeareaview

我需要在iPhoneX上使用 SafeViewArea ,但是当我放入 SafeViewArea 时,顶部会显示一些多余的余量。 / p>

enter image description here

我的代码段-

render () {

    return (

      <SafeAreaView forceInset={{ top: 'always' }} style={styles.applicationView}>
        <View style={styles.applicationView}>
          <StatusBar barStyle='light-content'/>
          <ReduxNavigation/>
        </View>
      </SafeAreaView>
    )
  }

styles.js

export default StyleSheet.create({
  applicationView: {
    flex: 1
  },
  container: {
    flex: 1,
    justifyContent: 'center',
    backgroundColor: Colors.background
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    fontFamily: Fonts.type.base,
    margin: Metrics.baseMargin
  },
  myImage: {
    width: 200,
    height: 200,
    alignSelf: 'center'
  }
})

编辑:如何消除SurfaceViewArea的阴影?

建议表示赞赏。 预先感谢。

0 个答案:

没有答案