Enabling the status bar causes a crash for react-navigation navigator screens
See original GitHub issueDescription
Turning on the UIViewController native status bars eliminates the possibility of using react navigation’s status bar, which requires
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
This makes it extremely difficult for me to add createNativeStackNavigator to my project that previously did not use createNativeStackNavigator but did use createStackNavigator
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Enabling the status bar causes a crash for react-navigation ...
Description. Turning on the UIViewController native status bars eliminates the possibility of using react navigation's status bar, which requires
Read more >Troubleshooting | React Navigation
Sometimes you might have noticed that your screens unmount/remount, or your local component state or the navigation state resets when you navigate. This...
Read more >react-native-screens - UNPKG
This navigator uses native navigation primitives (`UINavigationController` on iOS and `Fragment` on Android) for navigation under the hood. The main difference ...
Read more >react-native-screens - npm
0 for all the different navigator types (stack, tab, drawer, etc). To configure react-navigation to use screens instead of plain RN Views for ......
Read more >React Native Bottom Navigation - Using React Navigation V6
import android.os.Bundle;. This change is required to avoid crashes related to View state being not persisted consistently across Activity restarts. 3. For ...
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
I am closing this issue since I don’t know if there is something at the side of
react-native-screens
that can be done. Please comment here if you have any questions.But it is not directly used by
createStackNavigator
, so how is it connected directly to thestack-navigator
? You can usecreateStackNavigator
without usingStatusBar
. I am not sure if I understand you.