All Questions
Tagged with react-native react-native-navigation
1,528
questions
89votes
3answers
27kviews
React Navigation vs. React Native Navigation [closed]
What are the technical differences between the main two React Native navigation solutions: React Native Navigation and React Native?
React Navigation
React Native
Navigation
Are there specific ...
63votes
17answers
85kviews
Getting this error: error: bundling failed: Error: Unable to resolve module `react-native-safe-area-context`
I am getting this error after running my App:
error: bundling failed: Error: Unable to resolve module react-native-safe-area-context from node_modules/react-navigation-stack/lib/module/vendor/views/...
53votes
16answers
80kviews
Refresh previous screen on goBack()
I am new to React Native. How can we refresh/reload previous screen when returning to it by calling goBack()?
Lets say we have 3 screens A, B, C:
A -> B -> C
When we run goBack() from screen ...
35votes
8answers
52kviews
How to trigger an event when a component is shown when using react-native-navigation?
I am using react-native with react-native-navigation. I would like to reload data when a component is shown. The component is shown when a user clicks on a tab navigation button.
Should I use react ...
33votes
2answers
2kviews
React-native app is being restarted on every navigation when integrated with native app
We're trying to integrate a new React Native app to an existing native Android app. Following the RN official docs we managed to get it working but with some issues regarding the navigation.
We've ...
31votes
7answers
12kviews
React Native: Which navigator should I use? [closed]
I have to build a relatively big cross-platform (iOS & Android) application within 3 months.
So far when it comes to React Native I only have experience with NavigatorIOS. Now while I never ...
24votes
5answers
25kviews
Error: Unable to resolve module ` react-native-screens` from `node_modules/react-navigation-tabs/src/navigators/createBottomTabNavigator.js`
Current Behavior
After executing app is not installing reporting
bundling failed: Error: Unable to resolve module `
react-native-screens` from `node_modules/react-navigation-tabs/src/navigators/...
18votes
8answers
14kviews
Requiring unknown module "11" error on iOS simulator
When I run the react native project with react-native run-ios.It shows the following error on my iOS simulator.On my android simulator, it is totally ok.I have deleted node module and reinstalled.But ...
16votes
6answers
22kviews
How to use navigation.navigate from a component outside the stack.navigation
I have an application using React native where I am using react-navigation (5.2.9).
I built a Stack.Navigator where I've got my screens but I want the Footer component to be outside so it renders in ...
16votes
1answer
2kviews
Disadvantage of using JS based navigation solution like React Navigation instead of using Native Navigation like Wix's React Native Navigation?
The only reason I can think of using Native Navigation is when I have more screens & JS based solution like React Navigation will keep all the screens in memory. Now I am not a native developer so ...
16votes
1answer
20kviews
Couldn't find a navigation object. Is your component inside a screen in a navigator?
In My below code when I use useNavigation() then it gives an error like my quiestion
How to use useNavigation, Please any one can solve this error... ERROR:Couldn't find a navigation object. Is your ...
12votes
9answers
21kviews
React Navigation V5 Hide Bottom Tabs
I would like to be able to hide the tabs on a screen using React Native Navigation v5.
I've been reading the documentation but it doesn't seem like they've updated this for v5 and it refers to the &...
12votes
1answer
596views
Custom component topbar button event RNN v2
I have a custom component 'MenuButton' in my RNNv2 topbar. I want openMenu() to run when this button is clicked, but this doesn't happen. My typescript linting tells me Property openMenu does not ...
12votes
0answers
2kviews
How to cold start a React Native app over device lock screen?
I'm building a VoIP app on React Native, which detects incoming calls using push notifications. I need to start the app and bring it to the foreground on receiving a push notification. I'm able to ...
11votes
9answers
25kviews
How to hide bottom navigation bar on a specific screen in react native?
I am using React Native and React Native Navigation to build out my application. Currently, I have three bottom tabs: Home, Upload Video and Messages. Upon selection of the Upload Video tab, I want to ...