react-navigation-addons
react-navigation-addons copied to clipboard
Add-ons for React Navigation
Encountered following error. any idea why? 
I get this error when trying to use react-navigation with a redux integration as well as with the `enhance` function provided by react-navigation-addons.  Any ideas?
If I have a single stack Navigator, I don't get any runtime issues: ```jsx const SingleNavigator = enhance(StackNavigator)({ ... }); export default SingleNavigator; ``` But when I have multiple navigators...
I'm noticing simply by using this package via enabling enhance(StackNavigator), that when I reset to a new screen, the old screen unmounts, then gets momentarily re-constructed, mounted, rendered and then...
Allow for nested navigators and enhance accordingly. Not sure if checking the existence of property `router` is the best approach, but solves the issue. Solves #7 and #20.
I try to use ``` this.props.navigation.addListener('focus', console.log('focus')); this.props.navigation.addListener('blur', console.log('blur')); this.props.navigation.addListener('change', console.log('change')); ``` but when I run, will show this error > TypeError: cb is not function This error is located...
react-native version: 0.48.3 react-native-cli: 2.0.1 i rendered a StackNavigator as the top-level navigator and i need nest a Tabnavigator. But it crashed because of a infinite loop: " Cannot read...
I am using StackNavigator and tried to use navigation addons to know when component is rendering on `goBack()` but when I wrap my StackNavigator with the enhance method my component...

i used npm i -s react-navigation-addons to install the package and it got installed too but when i import import { enhance } from 'react-navigation-addons' it gives me unable to...