Как удалить верхнее поле из SafeViewArea |Реагировать Родной |iPhoneX - PullRequest
0 голосов
/ 30 января 2019

Мне нужно использовать SafeViewArea для iPhoneX, но когда я поставил SafeViewArea, тогда появляется некоторое нежелательное дополнительное поле сверху.

enter image description here

Фрагмент My Code -

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?

Предложения приветствуются.Заранее спасибо.

...