您好我是世博会的新手,但我一直很难尝试运行我的代码。我已经陷入了错误:You must specify initialRoute or initialStack to initialize this StackNavigation
,即使我已经设置了错误。
这是我的main.js
import Expo from 'expo'
import React from 'react'
import { createStore } from 'redux'
import { Provider } from 'react-redux'
import {
NavigationProvider,
StackNavigation,
} from '@expo/ex-navigation'
import RootReducer from './src/reducers'
import Router from './src/navigation/Router'
const store = createStore(RootReducer)
const App = () => (
<Provider store={store}>
<NavigationProvider router={Router}>
<StackNavigation intitialRoute={Router.getRoute('splash')} />
</NavigationProvider>
</Provider>
)
Expo.registerRootComponent(App)
这是我的Router.js
import { createRouter } from '@expo/ex-navigation'
// Screens
import SplashScreen from '../screens/SplashScreen'
import LoginScreen from '../screens/LoginScreen'
const Router = createRouter(() => ({
splash: () => SplashScreen,
login: () => LoginScreen,
}))
export default Router
我的设置似乎有什么问题?我只是按照ExNavigation
上的示例。
这是Sketch上的示例,但不能让它运行,但会留下完整代码的链接。
答案 0 :(得分:1)
在代码的这一部分中,你的名字中有一个拼写错误
<StackNavigation intitialRoute={Router.getRoute('splash')} />
initialRoute
代替intitialRoute
。