I attempt to upgrade to react-native 0.26 but a warning message appears.
I explain you my workflow :
react-native: 0.26
react: 15.0.2
react-native-router-flux: #master
The warning message is
Warning: Element: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://fb.me/react-special-props)
That's kind of annoying... semantically we actually want the same value as the key prop. One thing that's confusing is we're accessing element.key instead of element.props.key -> need to investigate this more.
I attempt to upgrade to react-native 0.26 but a warning message appears. I explain you my workflow :
The warning message is
on this line https://github.com/exponentjs/react-native-tab-navigator/blob/master/TabNavigator.js#L48.
According to https://fb.me/react-special-props, using key props is not a good idea.