Questions about Wix's React Native Navigation package (react-native-navigation on npm).
Questions tagged [wix-react-native-navigation]
269 questions
2
votes
1 answer
Wix React Native Navigation V2 initialise Stack with more screens
I am new to RNN V2. I was going through the documentation and I was testing some of the layouts.
One thing that I found confusing when reading about the stack is (from the documentation) - Support children layouts of any kind. A stack can be…

Sergio Borrelli
- 31
- 1
- 3
2
votes
1 answer
WIX React Native Navigation: Second screen in stack displays over the first one
I have a navigation in my RN app, based on WIX React Native Navigation.
I have two tabs in the app. In the first one "Settings" screen is rendered over "Login" screen, once the app is launched. How can it be solved, if I want to show only "Login"…

lecham
- 2,294
- 6
- 22
- 41
2
votes
1 answer
index.js: Cannot find module '.../@react-native-community/cli/node_modules/metro-react-native-babel-transformation/src/index.js' (null))
I am trying to add react-native-navigation@ v2 in my project but it is giving me this error. Can someone tell me why does this Happening??
this is my Package.json
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node…

rrrrrrrrr
- 222
- 3
- 9
2
votes
2 answers
Override back button wix react native navigation V2?
I am currently transitioning from Wix RNN V1 to V2, and so far I've managed to find the appropriate replacement APIs, except for overriding the back button on Android.
In V1 we could pass the overrideBackPress: true attribute, and then handle back…

Asleepace
- 3,466
- 2
- 23
- 36
2
votes
1 answer
Error running react-native application with wix@react-native-navigation
I installed wix/react-native-navigation and follow all the required configurations to be able to use it in android with react native. But my npm run android is not working even though my script is configure in package.json
"scripts": {
"start":…

Alan Ng
- 35
- 5
2
votes
1 answer
How to refresh the first screen after poping the second screen from stack react-native-navigation V2?
I am using Wix's react-native-navigation V2 in my app for Android. When I am pushing one screen and after a pop or pressing back button the previous or first component not rendering and not executing any lifecycle method. Even we cannot use pass…

Ahtesham Shah
- 243
- 2
- 7
- 31
2
votes
1 answer
React native navigation wix push screen problem
i have a created a tab based navigation with WIX and each time i am trying to push a screen from any screen of the tabs it doesn't do anything but , when i try to push from the first tab it works but any other tab i can't push from…

talaat medhat
- 43
- 6
2
votes
1 answer
Wrapping ThemeProvider to wix react-native-navigation V2
I am trying to wrap my RNN v2 based app with react-native-elements ThemeProvider.
ThemeProvider works well with same theme if wrapped around a single component but not if registered with Navigation, what I am doing wrong?
const theme = {
…

ninja
- 43
- 8
2
votes
0 answers
undefined is not an object(evaluating 'this.props.componentId') error in react native
I'm getting
undefined is not an object(evaluating 'this.props.componentId')
error in react native when using wix react native navigation in redux actions
Navigation.push(this.props.componentId, {
component: {
name:…

Arjun sr
- 161
- 2
- 10
2
votes
1 answer
How make release apk?
I have project. Debug version works. But release not.
I have project with wix-react-native-navigation, react-native-svg and react-native-vector-icons. Debug version works nice but release version after running show me this errors.…

Artem Litvinov
- 31
- 2
2
votes
0 answers
Navigating from one screen to other is not working in react native using wix react native navigation V2
I'm using wix react native navigation v2 for navigating from one screen to the other screen.When a button in the first screen clicked the following code runs
Navigation.push(this.props.componentId,{
component: {
name:…

Arjun sr
- 161
- 2
- 10
2
votes
1 answer
Integrate react-native-navigation with react-native-callkit in iOS
I am trying to to integrate RNN (React Native Navigation) with RNCK (React Native CallKit) in iOS.
The problem is that each of them requires a unique setup in Xcode project's AppDelegate.
Both of them need jsCodeLocation:
NSURL *jsCodeLocation =…

Michael Kessler
- 14,245
- 13
- 50
- 64
2
votes
3 answers
getting "reactnativenavigationtest" signin error
whenever I try to run, I get
error: Signing for "ReactNativeNavigationTests" requires a development team. Select a development team in the project editor. (in target 'ReactNativeNavigationTests')
I am signed in as my development team in…

Seongmin Choo
- 1,653
- 3
- 10
- 14
2
votes
1 answer
Toptabs are not showing up when using react-native-navigation [V2]
When trying to create toptab navigation in react-native-navigation v2 from wix I am unable to get the top tabs to appear. Below is the code I am trying to use. Any idea what I might be doing wrong?
stack: {
children: [
{
…

bmacrevolution
- 553
- 2
- 6
- 14
2
votes
1 answer
React native Wix Navigation.push possible unhandled promise rejection: Error : Failed to execute stack command
React native Wix Navigation.push possible unhandled promise rejection: Error : Failed to execute stack command
Login.js
signUpLink =(screenName) => {
Navigation.push(this.props.componentId, {
component: {
name: screenName,
…

Ashish
- 33
- 6