2.0.0-alpha.5 breaks my tabbed stackview
See original GitHub issueHiya, I just updated from 2.0.0-alpha.4 to 2.0.0-alpha.5 and it breaks my current set up.
<BottomTabNavigator />
- <StackNavigator />
- <StackNavigator />
- <StackNavigator />
- ...
Switching the BottomTabBar main children works fine but after adding/opening a new StackView to open a deeper view it shows this blank screen. I can still do a swipe back gesture to go back to the previous screen.
Enclosed a quit dummy example video RPReplay_Final1571660466.MP4.zip
FYI: Video is captured from a real iPhone7 device with iOS13.1
Versions:
...
"react": "16.9.0",
"react-native": "0.61.1",
"react-native-reanimated": "^1.3.0",
"react-navigation": "^4.0.10",
"react-navigation-redux-helpers": "^3.0.2",
"react-navigation-stack": "^1.7.3",
"react-navigation-tabs": "^2.5.0",
...
Issue Analytics
- State:
- Created 4 years ago
- Reactions:7
- Comments:15 (2 by maintainers)
Top Results From Across the Web
Auto Layout Guide: Stack Views - Apple Developer
Next, position these rows horizontally, select them, and click the Editor > Embed In > Stack View menu item again. This creates a...
Read more >React navigation 5 hide tab bar from stack navigator
I wanted to know how to hide the bottom tab bar from a specific screen inside my stack navigator that is nested on...
Read more >unable to resolve "react-native-safe-area-context" - You.com
I am using managed Expo SDK 36 app with React Navigation 5. When I run expo start -c, i get this the error:...
Read more >Unreal Engine 5.0 Release Notes
New and improved features of Unreal Engine 5 enable you to build highly detailed large worlds that can be designed, populated, and dynamically...
Read more >ImageJ Release Notes - NIH
Thanks to Sho Fujisawa, the ROI Manager uses 5 digits for y-coordinates in ROI names if the image height is greater than 9999...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@kamui545 yes I have almost same setup as you (using v8 instead of hermes) and also the problem looks similiar: blank page and bottom-tabs still visible. It works for me with none of 2.X versions I tried. And since some of my transitions look flickering on Android with 1.0.0.alpha23 I will now remove enableScreens for Android, on iOS I have no problem. What I also notice when using an 2.0.0.alpha my app crashes on the back navigation where usually the blank page appears with following crash:
AndroidRuntime java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first. AndroidRuntime at android.view.ViewGroup.addViewInner(ViewGroup.java:5106) AndroidRuntime at android.view.ViewGroup.addView(ViewGroup.java:4935)...
I can confirm that
enableScreens()
has been fixed in release2.0.0-alpha.6
but the other issue about the nested stack screens still exists in Android.