【发布时间】:2020-06-10 20:50:01
【问题描述】:
使用 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 />;
}
}
【问题讨论】:
标签: react-native react-navigation react-navigation-stack react-navigation-bottom-tab