Questions about Wix's React Native Navigation package (react-native-navigation on npm).
Questions tagged [wix-react-native-navigation]
269 questions
0
votes
1 answer
react-native-navigation(Wix) works on android but not on ios: App gets stucked in splash screen Powered by react native, only reaches index.js
I have the problem described in the title. I run the debugger and it's only reaching the index.js and not the index.ios.js for example since it's not even present in the debugger. So it should be a react-native-navigation issue. It gets stucked in…

John
- 1,711
- 2
- 29
- 42
0
votes
1 answer
In react native wix navigation how to go to previous tab from another tab?
I'm using react-native-navigation(wix) and I have 4 root tabs in my app. I'd like to navigate back to my previous tabs when I go from one tab to another.

Alan D'monte
- 1
- 1
0
votes
1 answer
Handling the status bar on iOS
Is there a goto way to handle the status bar on iOS? For my app, I just want everything to be below the status bar.. but it looks like the only way to do that is to go to every single component and add padding? I would guess theres a way to do it in…

billybob2
- 681
- 1
- 8
- 17
0
votes
1 answer
How to add icon to top navbar in react-native-navigation?
Issue Description
I'm trying to add a plus icon to the right side of the top navbar, i'm using react-native-navigation library by wix.
I get this error
Bundling index.android.js [development, non-minified, hmr enabled]
0.0% (3/662), failed.…

Omar Awamry
- 1,462
- 3
- 15
- 29
0
votes
1 answer
Can not build the third party in react native navigation
After install react-native-navigation, I want to rebuild it. The build failed.
FAILURE: Build failed with an exception.
What went wrong:
Could not resolve all files for configuration ':app:debugCompileClasspath'.
Could not resolve…

Avian Driyanto
- 93
- 2
- 11
0
votes
1 answer
Using a second ReactRootView
Using the wix react-native-navigation library:
I have a ReactContextBaseJavaModule that (on request from my js app) starts an activity which contains the following code:
mReactRootView = new…

Martin Lockett
- 2,275
- 27
- 31
0
votes
2 answers
Navigate to another screen from Flat list item getting pressed
I've been using wix/react-native-navigation package to navigate between screens and handling the stack properly.
Moving across screens is pretty straightforward, firing those transitions when a button gets pressed. But the issue comes up when I have…

AXSM
- 1,142
- 1
- 12
- 27
0
votes
1 answer
Top bar padding for react-native-navigation v2
I'm using react-native-navigation v2 and this is how my app looks like with translucent status bar. In the RNN v1, there is an API that allows adding custom padding to the top bar - navBarTopPadding, but I couldn't find similar API for the RNN v2.…

Vladimir K.
- 653
- 1
- 5
- 14
0
votes
0 answers
react native Navigation - Custom Nav Bar is not centralized
Custom nav bar is not centralised when there is a right navigation icon. The whole custom navigation is pushed left
Steps to Reproduce:
add a custom Nav Bar
add an navigation right icon
result: the whole custom navigation area is pushed to the…

Zorox
- 2,040
- 2
- 21
- 28
0
votes
2 answers
React-native-navigation not returning from inside a component
I am using react native navigation by wix for my application.
It is working fine if I just have the Navigation.startTabBasedApp in my application like this:
import React, { Component } from 'react';
import Amplify from…

tygar
- 244
- 1
- 4
- 15
0
votes
0 answers
How can I pass navigator props to HOC?
I want to pass parameters to hoc. I saw that react-navigation method withNavigation. Is there available like this method on react-native-navigation? Or how can I do this method?

Burhan Yılmaz
- 774
- 8
- 21
0
votes
1 answer
Change icon in react-native-navigation tab
Is that possible to change icon in react-native-navigation tabbar?
I mean for example somewhere in my application i did call to api and after response came I need to change my Icon in tab bar to new one.
for example Heart icon to Mail Icon.…

Андрей Гузюк
- 2,134
- 6
- 29
- 53
-1
votes
3 answers
How to pass the parameter with pop in wix react-native-navigation?
how to pass parameters in pop method.
Requirement: There are two screens, screen 1 has two tabs like this: Address and Billing. There are two button on each tab layout. On click button go to screen 2 after functionality back to screen 1 but now…

Harleen Kaur Arora
- 1,949
- 2
- 23
- 55
-1
votes
2 answers
React Native Android Hardware Back button not working properly
LoginScreen.js
this.props.navigator.push({
screen: "auxxa.LandingScreen",
passProps: { login: true },
overrideBackPress: true,
navigatorStyle: {
navBarHidden: true
}
});
LandingScreen.js
…

Rajitha Perera
- 1,581
- 5
- 26
- 42