We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tell us which versions you are using:
Is there way to create 'root' tab scene and keep its global component on the top of it, like header
For example i have 2 tab scenes
<Scene key='root'> <Scene key='mytabscene' component={ GlobalHeader }> <Scene key='tab_1' component={ MyComponent1 } /> <Scene key='tab_1' component={ MyComponent2 } /> </Scene> </Scene>
globalHeader.js
export default class GlobalHeader extends React.Component { render () { return ( <View> <Text>Parent component</Text> <SomeCustomTabManipulator /> // Custom tab switcher <InheritScene /> </View> ) } }
MyCompoent.js
export default class MyComponent1 extends React.Component { render () { return ( <View> <SceneGlobalComponent /> // Here should be component <Text>Other content</Text> </View> ) } }
The text was updated successfully, but these errors were encountered:
v3 is not supported anymore. Please test v4 and create issues if any.
Sorry, something went wrong.
Which v4? Isn't 3.41.0 the last one?
Never mind.
No branches or pull requests
Version
Tell us which versions you are using:
Is there way to create 'root' tab scene and keep its global component on the top of it, like header
For example i have 2 tab scenes
globalHeader.js
MyCompoent.js
The text was updated successfully, but these errors were encountered: