DEV Community

Discussion on: How to pass initial props from Android native.

Collapse
 
silhouette5366 profile image
silhouette5366

On doing console.warn(props.message) in constructor it is showing warning as "undefined". Help cannot send initial props.

Collapse
 
ryohlan profile image
Ryohlan

Hi, I tried it on v0.58. It works successfully.

This props can receive only entry point which the default is App.js.

Collapse
 
silhouette5366 profile image
silhouette5366

I think my entry point is index.js which then calls the App.js.

Here is the index.js code:

import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);

Then the main working code is in App.js
what should i do?

Thread Thread
 
ryohlan profile image
Ryohlan

See github.com/ryohlan/react-native-pl...

The diff is only that from initialize.

Thread Thread
 
silhouette5366 profile image
silhouette5366

I got the problem. Actually its not working in case when I use react-navigatin stack navigator, when I remove the stack navigator, it's working.
How to use it along with stack navigator?

Thread Thread
 
ryohlan profile image
Ryohlan

Pass App.js props to react-navigation root component. it should be worked.

Thread Thread
 
silhouette5366 profile image
silhouette5366

Thanks for the quick response. I am trying to pass the initial props to first scene.
Great post !!

Thread Thread
 
kps250 profile image
Kiran Shinde • Edited

How can we pass App.js props to react-navigation root component?