-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Displaying map when you tap on a friend #50
Conversation
package.json
Outdated
@@ -15,7 +15,7 @@ | |||
"react-native-fcm": "^6.2.1", | |||
"react-native-google-places-autocomplete": "^1.2.11", | |||
"react-native-google-signin": "^0.10.0", | |||
"react-native-maps": "^0.14.0", | |||
"react-native-maps": "0.13.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rebase and fix this conflict please :-)
app/FriendMap.js
Outdated
console.log(err); | ||
}) | ||
this.state = {}; | ||
console.log('THIS.PROPS.NAVIGATION.STATE.PARAMS', this.props.navigation.state.params); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's remove this :-)
app/FriendMap.js
Outdated
const { data } = this.props.navigation.state.params; | ||
console.log(data); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's remove this :-)
app/FriendMap.js
Outdated
@@ -89,15 +54,59 @@ export default class FriendMap extends Component { | |||
} | |||
|
|||
renderGPS(data) { | |||
const { region } = this.props; | |||
console.log(region); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's remove this :-)
No description provided.