Tell us which versions you are using (react native 0.26 is required for v3):
ExceptionsManager.js:61 Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. Check the render method of TabNavigator.
tabs ={true} is not work
Can you reproduce in the Example app? Or paste your
@cridenour thank you ,demo is not issue ,my project is upgrade
Just a note on this error, I got it when I didn't define and include an Icon for tabs. Might be worth investigating a clearer error message.
to reproduce:
<Scene key="books" tabs={true}>
<Scene key='catalog' component={Catalog} title="Catalog" />
...
to fix:
<Scene key='catalog' component={Catalog} title="Catalog" icon={TabIcon}/>
Opened https://github.com/aksonov/react-native-router-flux/issues/736 as it was previously working
Can confirm what @ssomnoremac said. The error seems to happen when you don't include an Icon for the tabs.
I've also encountered the same problem
Most helpful comment
Just a note on this error, I got it when I didn't define and include an Icon for tabs. Might be worth investigating a clearer error message.
to reproduce:
to fix: