Closed DragonSpirit closed 6 years ago
Which one is NavigatorReduxWrapper
? I can look at this today if you put it in an Expo Snack!
Here, in library. I will try to reproduce it with Expo Snack.
It appears that you are passing an undefined
navigator to reduxifyNavigator
?
Well, I solved this issue. You was right. It happens due to race condition in import/export. I just refactored my code and got rid of this error. Anyway thanks for help!
Hello! I get following issue.
My code
```javascript // middleware part middlewares.push(createReactNavigationReduxMiddleware( 'root', state => state.getIn(['navigation']), )) const RootNavigator = createStackNavigator(AppRouteConfigs) const AppWithNavigationState = reduxifyNavigator(RootNavigator, 'root') class ReduxNavigation extends React.Component { render() { const { dispatch, navigation, language, theme, } = this.props return (Error appears in render method of NavigatorReduxWrapper.
"Navigator" is undefined.
Did I do something wrong?