-
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
Delete hideNavBar and replaced hideNavBar with child.hideNavBar #1406
Conversation
@MechanicKim, thanks for your PR! By analyzing the history of the files in this pull request, we identified @joenoon, @andyschwob and @mat2maa to be potential reviewers. |
I'm a few versions behind and a bit out of the loop on this project, so I could be wrong here. But removing deepestExplicitValueForKey seems to me like it would break a lot of functionality that used to be demoed in the Example app: Go to tabbar > push new scene > and then all of the variations of hideTabBar hideNavBar that persisted through additional scenes and correctly recoiled as they were popped off. I would just urge someone more current on the state of the project to double check this. #1330 #1363 |
@joenoon |
@MechanicKim If I'm guessing, I think what you have is something like this:
And when you go Actions.scene3(), you notice it thinks If that accurately describes the issue, that was how I intended hideNavBar and hideTabBar to work - they are inherited values. The So I guess a few things:
Also, I mentioned before I'm a few versions behind, so I'm kind of jogging my memory on this, and I can't vouch that this functionality hasn't been broken in the latest versions that I haven't seen yet. |
First, I'm sorry. I might not know the intention of this react native package well. |
@MechanicKim no need to be sorry! What do you think about the rest? Does my explanation solve your issue or is there still something that doesn't work for your app? |
Yes! I totally understood your explanation that is so clear. ^^
No problem in our application. I just felt a little strange.
If I can contribute to this project in anyway, I hope to do it.
Thank you so much!
Have a nice day.
2016-11-25 1:28 GMT+09:00 Joe Noon <[email protected]>:
… @MechanicKim <https://github.com/MechanicKim> no need to be sorry! What
do you think about the rest? Does my explanation solve your issue or is
there still something that doesn't work for your app?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1406 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ALlkF8wg2iFLI3x1gdVPOXJtxm1usEoSks5rBbs8gaJpZM4K5JjC>
.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately we can't update react-native without running react-native upgrade
.
I fixed the CI in #1422, but if you want to update the example project you can do it in another PR and don't forget to run the upgrade command.
Thank you @MechanicKim, your time is greatly appreciated. I'll close this PR since it seems resolved, if you think it shouldn't be closed, please let me know. |
Please refer to #1363
As I know, default value of scene property 'hideNavBar' is false.
So, I fixed two lines in a file 'Defaultrenderer.js'
Added information!