react-navigation-addons icon indicating copy to clipboard operation
react-navigation-addons copied to clipboard

Add-ons for React Navigation

Results 12 react-navigation-addons issues
Sort by recently updated
recently updated
newest added

Encountered following error. any idea why? ![error](https://user-images.githubusercontent.com/43641800/47702417-ab033f80-dc3e-11e8-9168-e3f2e37f22a9.JPG)

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. ![image](https://user-images.githubusercontent.com/1499050/28377937-c76dcd76-6cae-11e7-866f-fea38fb1ad96.png) 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...

![image](https://user-images.githubusercontent.com/4168297/28446150-742cbc5a-6dfb-11e7-8b54-745c4725e4b2.png)

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...