From 2bbaa357bfe8b5d1ce3c0c085c47ec133545e580 Mon Sep 17 00:00:00 2001 From: Mzynga Technology Date: Mon, 23 Aug 2021 11:36:07 +0300 Subject: [PATCH 1/2] Issue 135 (#165) --- README.md | 7 +++++-- app/screens/map-screen/map-screen.tsx | 3 ++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b9ee596f9f..e52ece6368 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,11 @@ This repository is the mobile application of Galoy. It is build with [React Native](https://reactnative.dev/), and compatible on iOS and Android. ## Start - -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. +Prerequisite -- 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. diff --git a/app/screens/map-screen/map-screen.tsx b/app/screens/map-screen/map-screen.tsx index 7ee56c1b0c..fed4c6f122 100644 --- a/app/screens/map-screen/map-screen.tsx +++ b/app/screens/map-screen/map-screen.tsx @@ -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 }, @@ -131,7 +132,7 @@ export const MapScreen: ScreenType = ({ navigation }: Props) => { ? navigation.navigate("sendBitcoin", { username: item.username }) : navigation.navigate("phoneValidation") markers.push( - + Date: Mon, 23 Aug 2021 11:38:03 +0300 Subject: [PATCH 2/2] Update Read Me To update using yarn --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e52ece6368..f2bdbe80c6 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,13 @@ This repository is the mobile application of Galoy. It is build with [React Nati ## Start Prerequisite -- 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.