我需要在iPhoneX上使用 SafeViewArea
,但是当我放入 SafeViewArea
时,顶部会显示一些多余的余量。 / p>
我的代码段-
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
的阴影?
建议表示赞赏。 预先感谢。