0

是否有一种 goto 方式来处理 iOS 上的状态栏?对于我的应用程序,我只希望所有内容都位于状态栏下方。但看起来唯一的方法是转到每个组件并添加填充?我猜想在 xcode 中有一种方法可以做到,但我不知道!

谢谢!

4

1 回答 1

2

StatusBarreact-native中已经有一个组件

您只需将其添加为

<YourParentWrapper style={{flex: 1}}>
  <View style={{ height, backgroundColor }}>
        <StatusBar { ...props } />
    </View>
  // ... Your navigation or the child components
</YourParentWrapper>

高度在哪里

Platform.OS === 'ios' ? 20 : StatusBar.currentHeight

这将在所有设备的默认状态栏下方处理您的组件

于 2018-04-08T15:23:08.923 回答