我刚刚启动了一个博览会项目,在旧版本中我没有这样的问题,我只运行了 2 个命令,“npx create-expo-app@latest”和“npm run reset-project”。我只有一个文件,即 index.js,过去 4-5 小时我一直在网上搜索解决方案,但找不到有效的解决方案。
我查看了app.json,尝试了expo状态栏,react本机状态栏,我更新了手机上的expo go,尝试放入视图,safeareaview,尝试设置状态栏样式,我什至无法理解它是怎么回事如果我在这个项目中没有做任何事情,状态栏可能不会显示
import { StatusBar } from 'expo-status-bar';
import { Text, View } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
export default function Index() {
return (
<SafeAreaView>
<StatusBar />
<Text>
Hello world!
</Text>
</SafeAreaView>
);
}