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
"react-native-router-flux": "^4.0.0-beta.28" "react-native": "0.52.1",
like in ios, completely transparent
i have a very very thin white line in the bottom of the nav bar, looking like 3D/zIndex upper layer
**<Scene key='scene1' component={component1} drawer={true} navTransparent={true} />** <Scene key='creators' component={creatorScreen} title={'Creators'} back/> </Drawer> </Stack>
Thanks for the helpers
The text was updated successfully, but these errors were encountered:
I resolved it. Don't use navTransparent. use
navigationBarStyle={{ position: 'absolute', backgroundColor: 'transparent', zIndex: 100, top: 0, left: 0, right: 0, borderBottomWidth: 0, elevation: 0, }}
like this: <Scene key='scene1' component={component1} navigationBarStyle={{ position: 'absolute', backgroundColor: 'transparent', zIndex: 100, top: 0, left: 0, right: 0, borderBottomWidth: 0, elevation: 0, }} />
Sorry, something went wrong.
Please try to reproduce it with Example project and latest version 4.0.0-beta.40. Feel free to open if the issue still exists
No branches or pull requests
Version
"react-native-router-flux": "^4.0.0-beta.28"
"react-native": "0.52.1",
Expected behaviour
like in ios, completely transparent
Actual behaviour
i have a very very thin white line in the bottom of the nav bar, looking like 3D/zIndex upper layer
Thanks for the helpers
The text was updated successfully, but these errors were encountered: