-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
Router doesn't render over the parent element #2218
Comments
Made it work with a nasty trick of making a wrapper of zero height:
|
simple try this: <Image
style={{
flex: 1,
width: null,
height: null,
resizeMode: 'cover',
}}
source={{
uri:'',
}}
>
<Router getSceneStyle={() => ({ backgroundColor: 'transparent' )}>
<Scene key="home" component={Home} title="Welcome" />
</Router>
</Image> for me working |
@devvtms, thanks! any ideas on how to fix #2220 by a chance? :) I need it only for some part of my scenes, not for all of them. |
Closing it in favour to #2220 |
None if this is working, anyone have any ideas here is my code
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version
Expected behaviour
Background image of parent component wrapper is visible
Actual behaviour
Background image of parent component wrapper is not visible
The text was updated successfully, but these errors were encountered: