Questions tagged [react-native-navigation]

Use this tag for questions related to the React Native Navigation library that provides a complete native navigation solution for React Native apps.

React Native Navigation provides 100% native platform navigation on both iOS and Android for React Native apps.

For more info see github project

https://github.com/wix/react-native-navigation

1903 questions
4
votes
2 answers

React-native app crashes on real android device

I am using react-native and currently started using redux and created one app but when I am running that app on the emulator it is working fine. Then I connected my mobile with android 6 through USB on that also it is working. But in other devices…
4
votes
2 answers

React Native Navigation with Redux, how to use?

There are a couple of tutorials online on how to use react-native-navigation with Redux. However, none of them is complete and I really do not understand what do I need to return in my root function. If I do return
Jose
  • 1,389
  • 3
  • 16
  • 25
4
votes
2 answers

Unable to resolve dependency for '...': Could not resolve project :react-native-navigation

Issue Description After carefully following the instructions in https://wix.github.io/react-native-navigation/#/docs/Installing, I am getting these errors after completing step 4 for Android: ERROR: Unable to resolve dependency for…
4
votes
3 answers

How do I disable the device back button on Android (react-native)?

How can I disable the physical device back button on Android with React-Native? I don't want to enable it for the user.
4
votes
1 answer

Remove the shadow on the right side of the left sideMenu in react-native-navigation v2?

How can we remove the shadow from the left sideMenu from react-native-navigation v2.
4
votes
2 answers

Android app crash, finding cause in logcat

I'm posting here for help locating the issue that is causing a React Native Android app to crash. The app uses React Native Navigation. I can't work out which error is causing the app to crash. It crashes as it starts to load its main screen. I…
Adamski
  • 3,585
  • 5
  • 42
  • 78
4
votes
1 answer

Why React Native Navigation v2 icon is not showing in iOS?

I'm using new V2 of react-native-navigation, when I'm use back icons and right top bar button icons, I't works fine on android devices, but with IOS I'm not getting the image, only the blue circle. These are the codes use generate top bar…
4
votes
2 answers

React native partial modals with pan responder

I'm trying to recreate an element that appears over the screen and that can be expanded, closed or resized by a scroll gesture. I don't know the real name of this element but it can be found in Apple Maps, Google Maps or Apple Music for…
4
votes
1 answer

Babel overrides is not allowed in preset options react native navigation

I trying to add a router react native navigation v2 to this starter project on react-native, but I have a problem that is connected with babel package (probably). When I run react-native run-android I have this error in Metro Bundler: loading…
4
votes
3 answers

Deep links in react-native-firebase notifications

I am using react-native-firebase with messaging to deliver notifications to my app with cloud functions, with admin.messaging().send(message), very similar to here:…
4
votes
1 answer

React native - Hide status bar only on specific screens

I am using tab navigation for uploading images like below const Photos = TabNavigator({ CAMERA: { screen: TakeCamera, navigationOptions: { tabBarIcon: ({focused}) => (
Inaccessible
  • 1,560
  • 3
  • 18
  • 42
4
votes
1 answer

How do I run React-Native-Navigation v2 Playground from the cloned repo on my Windows?

I have cloned Wix RNN2 repo [Branch v2] and I am not sure how to run playground on my emulator. If I just run npm run start, I get this error: > rm -rf ./lib/dist && tsc 'rm' is not recognized as an internal or external command, operable program or…
4
votes
0 answers

Does react-native app refresh after setting permissions? (iOS only)

On some app page, I call Linking.openURL('app-settings:1') To open the Settings app to allow someone to give me access to the Camera if they have not already. When I change a setting, the app refreshes, and pulls up the initial/start screen. Is…
4
votes
1 answer

React Native Navigation: how to disable backbutton on modals?

I've a login modal opened using showModal(). It has no navbar buttons, so ios users cannot close this modal. Problem: Actually Android users can use hardware back button to close the login modal. In my login modal I tried to add…
realtebo
  • 23,922
  • 37
  • 112
  • 189
4
votes
1 answer

How to properly install react-native-navigation on android

After switching to react-native-navigation from react-navigation my app cant launch properly. It either appears as a blank screen or immedialy switches to the background without ability to switch back. Shaking the device or remote command adb shell…