Skip to content
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 #169

Merged
merged 2 commits into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@
This repository is the mobile application of Galoy. It is build with [React Native](https://reactnative.dev/), and compatible on iOS and Android.

## Start
Prerequisite -- Follow the instruction [getting started](https://reactnative.dev/docs/getting-started) to have the correct setup.

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.
Clone into the project

cd into the directory

type `yarn install`

type `react-native run-ios` or `react-native run-android` to run locally.

The app is built and push on Play Store / Android Store on demand with CircleCI.

Expand Down
3 changes: 2 additions & 1 deletion app/screens/map-screen/map-screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import type { PrimaryStackParamList } from "../../navigation/stack-param-lists"
import { ScreenType } from "../../types/jsx"
import { isIos } from "../../utils/helper"
import { translate } from "../../i18n"
import { palette } from "../../theme/palette"

const styles = StyleSheet.create({
android: { marginTop: 18 },
Expand Down Expand Up @@ -131,7 +132,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={palette.orange}>
<Callout
// alphaHitTest
// tooltip
Expand Down