0

使用 react-navigation v4,这是我的代码我遇到了这个错误,我还检查了文档

  import React from 'react';
  import { StyleSheet, Text, View, Button } from 'react-native';
  import { createAppContainer } from 'react-navigation';
  import { createBottomTabNavigator } from 'react-navigation-tabs';
  import { Ionicons } from '@expo/vector-icons';
  import MyHomeScreen from './screen/Homescreen';
  import MyNotificationsScreen from './screen/Notification';

  const TabNavigator = createBottomTabNavigator({
  Home: MyHomeScreen,
  Notifications: MyNotificationsScreen,
  });

 const AppContainer = createAppContainer(TabNavigator);
 export default class App extends React.Component {
 render() {
  return <AppContainer />;
 }
 }
4

1 回答 1

0

确保您连接到同一个网络,您的系统和手机应该连接到同一个 wifi,并且您必须升级您的 Expo CLI。

于 2020-06-11T21:44:11.083 回答