-
Notifications
You must be signed in to change notification settings - Fork 129
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
Issue 135 #165
Issue 135 #165
Conversation
To add steps for npx and npm environment integration
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.
The pull request makes 27,404 changes to the package-lock.json
file because you used npm install
instead of yarn install
. We'll want those changes removed before merging.
type `react-native run-ios` or `react-native run-android` to run locally. Follow the instruction [getting started](https://reactnative.dev/docs/getting-started) to have the correct setup. | ||
cd into project folder | ||
|
||
type `npm install` |
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.
We use yarn internally for the project, so I think we should recommend yarn install
instead. Or have both: yarn install
or npm install
.
|
||
type `npm install` | ||
|
||
`npx react-native start` to start metro. |
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.
react-native start
or npx react-native start
to be consistent with other lines.
@@ -131,7 +131,7 @@ export const MapScreen: ScreenType = ({ navigation }: Props) => { | |||
? navigation.navigate("sendBitcoin", { username: item.username }) | |||
: navigation.navigate("phoneValidation") | |||
markers.push( | |||
<Marker coordinate={item.coordinate} key={item.title}> | |||
<Marker coordinate={item.coordinate} key={item.title} pinColor={'#FF8000'}> |
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.
We may also want to extract this into https://github.com/GaloyMoney/galoy-mobile/blob/main/app/theme/palette.ts . Or use the orange from that file.
Change pin color