簡體   English   中英

在 UIManager 中找不到 RNCSafeAreaView

[英]RNCSafeAreaView was not found in the UIManager

系統:操作系統:Linux 5.3 Ubuntu 18.04.4 LTS (Bionic Beaver) CPU:(4) x64 Intel(R) Core(TM) i5-4300U CPU @ 1.90GHz 內存:378.16 MB / 7.66 GB 外殼:4.4.20 - / bin/bash 二進制文件:節點:12.16.1 - /usr/bin/node Yarn:1.21.1 - /usr/bin/yarn npm:6.13.4 - /usr/bin/npm Watchman:4.9.0 - /usr/本地/垃圾箱/守望者

SDK:

  • 安卓SDK:
  • API 級別:23、25、27、28
  • 構建工具:23.0.1、23.0.3、27.0.3、28.0.3
  • 系統映像:android-28 | Intel x86 Atom_64, android-28 | Google APIs Intel x86 Atom

IDE: Android Studio:3.5 AI-191.8026.42.35.5791312

npm 軟件包:

反應:16.9.0 => 16.9.0

反應原生:0.61.5 => 0.61.5

npmGlobalPackages:

react-native-git-upgrade: 0.2.7

"dependencies": {
    "@react-native-community/masked-view": "^0.1.7",
    "@react-navigation/bottom-tabs": "^5.1.1",
    "@react-navigation/native": "^5.0.9",
    "@react-navigation/stack": "^5.1.1",
    "prop-types": "^15.7.2",
    "react": "16.9.0",
    "react-native": "0.61.5",
    "react-native-deprecated-custom-components": "^0.1.2",
    "react-native-gesture-handler": "^1.6.0",
    "react-native-reanimated": "^1.7.0",
    "react-native-safe-area-context": "^0.7.3",
    "react-native-screens": "^2.3.0",
    "react-native-scrollable-tab-view": "^1.0.0",
    "react-native-swiper": "^1.6.0-rc.3",
    "react-native-tab-navigator": "^0.3.4"
  }

代碼:

function HomeScreen() {
  return (
    <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
      <Text>Home!</Text>
    </View>
  );
}

function SettingsScreen() {
  return (
    <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
      <Text>Settings!</Text>
    </View>
  );
}
return (
      <NavigationContainer>
        <Tab.Navigator>
          <Tab.Screen name="Home" component={HomeScreen} />
          <Tab.Screen name="Settings" component={SettingsScreen} />
        </Tab.Navigator>
      </NavigationContainer>
    )

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM