gpt4 book ai didi

react-native - NativeBase + 指数 header

转载 作者:行者123 更新时间:2023-12-03 21:06:14 26 4
gpt4 key购买 nike

我正在将 NativeBase 与指数一起使用。标题位于手机的状态栏下方。您可以在 NativeBase 中看到这一点指数发布的演示。

enter image description here

有没有人解决这个问题?

最佳答案

由于此问题仅在 Android 中出现,因此推荐的解决此问题的方法是专门使用 来定位 Android。平台 :

import {Platform, StatusBar} from 'react-native'

const styles = StyleSheet.create({
container: {
flex: 1,
...Platform.select({
android: {
marginTop: StatusBar.currentHeight
}
})

}
})

其中容器是应用程序中的主要容器。
<View style={styles.container}>
// rest of the code here
</View>

关于react-native - NativeBase + 指数 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42098186/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com