react-native-navbar
react-native-navbar copied to clipboard
passing property to second scene android
this.props.navigator.push({ id: 'MainPage', name: 'test', passProps: {userInfo: res} });
i am setting property userInfo but passProps not working and i am not able to get property parameter in second scene
Hi, @jigarrdesai !
I had the same question previously, but managed to find the answer in this thread: https://github.com/react-native-community/react-native-navbar/issues/15#issuecomment-157646226
Basically, you can access it on the next scene using this.props.route.passProps.userInfo
Hope it helps.