TabNavigator 不适用于 iOS 的 react-native



我无法让TabNavigator在iOS上运行,尽管它在Android中运行良好。 以下是重现问题的步骤

打开终端窗口。

react-native init tabnav

cd tabnav

rm -rf node_modules

rm -rf package.json

rm -rf package-lock.json

然后我打开package.json并粘贴以下内容:

{
  "name": "tabnav",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "start": "node node_modules/react-native/local-cli/cli.js start",
    "test": "jest"
  },
  "dependencies": {
    "react": "16.0.0-beta.5",
    "react-native": "0.49.3",
    "react-navigation": "git+https://github.com/react-community/react-navigation.git"
  },
  "devDependencies": {
    "babel-jest": "22.4.1",
    "babel-preset-react-native": "4.0.0",
    "jest": "22.4.2",
    "react-test-renderer": "16.3.0-alpha.1"
  },
  "jest": {
    "preset": "react-native"
  }

然后我打开App.js并粘贴内容:

import React, { Component } from 'react';
import {TabNavigator} from 'react-navigation';
import {
  Text,
  View
} from 'react-native';
type Props = {};
class Page extends Component<Props> { 
  render() {
    return (
      <View style={{flex:1}}>
        <Text>
          Welcome to React Native!
        </Text>
      </View>
    );
  }
}
const Navigator = TabNavigator({
  Recent: {screen: Page},
  Popular:{screen:Page}
  }
);
export default Navigator;

然后我打开了 Xcode 项目,清理并运行了该项目。

然后我得到这个错误:

未定义不是函数(近 '...(0,_reactNavigation.TabNavigator(...'(

为什么选项卡导航器不起作用?


注意:如果我将选项卡导航器的所有实例替换为堆栈导航器,则错误将消失。 但我需要一个选项卡导航器,而不是堆栈导航器

尝试从package.json中删除react-navigation包,然后安装react-navigation。希望对您有所帮助。


完成此操作后,您会注意到package.json将列出特定版本的React-natigation,而不仅仅是指向存储库的链接

在 v2 以上的反应导航中,引入了一个新的 TabNavigator,您可以使用 createMaterialTopTabNavigator 在屏幕顶部创建 TabNavigator。

import {createMaterialTopTabNavigator} from "react-navigation";
const TabsAB = createMaterialTopTabNavigator({
Tab_A: {
    screen: ScreenA,
....

相关内容

  • 没有找到相关文章

最新更新