Im trying to pass data between screens in my app. Currently I am using
\"react-native\": \"0.46.0\", \"react-navigation\": \"^1.0.0-beta.11\" <
\"react-native\": \"0.46.0\", \"react-navigation\": \"^1.0.0-beta.11\"
In your code, props.navigation and this.props.navigation.state are two different things. You should try this in your second screen:
props.navigation
this.props.navigation.state
const {state} = props.navigation; console.log("PROPS " + state.params.user);
the const {state} line is only here to get an easy to read code.
const {state}