├── .babelrc ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── _universe ├── app.json ├── entry.js ├── rn-cli.config.js └── transformer.js ├── api └── registerForPushNotificationsAsync.js ├── app.json ├── assets ├── .DS_Store ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── bill.png │ ├── face.png │ ├── icon.png │ ├── icons8-camera.png │ ├── icons8-cashflow.png │ ├── icons8-document.png │ ├── icons8-donate.png │ ├── icons8-left_4.png │ ├── icons8-menu.png │ ├── icons8-menu_filled.png │ ├── icons8-menu_filled_blue.png │ ├── icons8-receive_cash.png │ ├── mbcoin.png │ ├── mbcoin_blue.png │ ├── overlay.png │ ├── robot-dev.png │ ├── robot-prod.png │ └── splash.png ├── components ├── Loading.js ├── LoadingModal.js ├── StyledText.js └── __tests__ │ └── StyledText-test.js ├── constants ├── Colors.js └── Layout.js ├── demo.gif ├── demo2.gif ├── lottie ├── check.json ├── doc.json ├── phonological.json ├── preloader.json └── wallet.json ├── navigation ├── MainDrawerNavigator.js ├── MainTabNavigator.js ├── RootNavigation.js └── SideMenu.js ├── package.json ├── screens ├── CameraScreen.js ├── ChartScreen.js ├── DocumentScreen.js ├── GuideScreen.js ├── HomeScreen.js ├── LinksScreen.js ├── ReceiveScreen.js ├── SendScreen.js └── SettingsScreen.js ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png └── 7.png └── utils └── firebaseUtil.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /_universe/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/_universe/app.json -------------------------------------------------------------------------------- /_universe/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/_universe/entry.js -------------------------------------------------------------------------------- /_universe/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/_universe/rn-cli.config.js -------------------------------------------------------------------------------- /_universe/transformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/_universe/transformer.js -------------------------------------------------------------------------------- /api/registerForPushNotificationsAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/api/registerForPushNotificationsAsync.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/app.json -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/bill.png -------------------------------------------------------------------------------- /assets/images/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/face.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/icons8-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icons8-camera.png -------------------------------------------------------------------------------- /assets/images/icons8-cashflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icons8-cashflow.png -------------------------------------------------------------------------------- /assets/images/icons8-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icons8-document.png -------------------------------------------------------------------------------- /assets/images/icons8-donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icons8-donate.png -------------------------------------------------------------------------------- /assets/images/icons8-left_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icons8-left_4.png -------------------------------------------------------------------------------- /assets/images/icons8-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icons8-menu.png -------------------------------------------------------------------------------- /assets/images/icons8-menu_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icons8-menu_filled.png -------------------------------------------------------------------------------- /assets/images/icons8-menu_filled_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icons8-menu_filled_blue.png -------------------------------------------------------------------------------- /assets/images/icons8-receive_cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/icons8-receive_cash.png -------------------------------------------------------------------------------- /assets/images/mbcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/mbcoin.png -------------------------------------------------------------------------------- /assets/images/mbcoin_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/mbcoin_blue.png -------------------------------------------------------------------------------- /assets/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/overlay.png -------------------------------------------------------------------------------- /assets/images/robot-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/robot-dev.png -------------------------------------------------------------------------------- /assets/images/robot-prod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/robot-prod.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/components/Loading.js -------------------------------------------------------------------------------- /components/LoadingModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/components/LoadingModal.js -------------------------------------------------------------------------------- /components/StyledText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/components/StyledText.js -------------------------------------------------------------------------------- /components/__tests__/StyledText-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/components/__tests__/StyledText-test.js -------------------------------------------------------------------------------- /constants/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/constants/Colors.js -------------------------------------------------------------------------------- /constants/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/constants/Layout.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/demo.gif -------------------------------------------------------------------------------- /demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/demo2.gif -------------------------------------------------------------------------------- /lottie/check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/lottie/check.json -------------------------------------------------------------------------------- /lottie/doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/lottie/doc.json -------------------------------------------------------------------------------- /lottie/phonological.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/lottie/phonological.json -------------------------------------------------------------------------------- /lottie/preloader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/lottie/preloader.json -------------------------------------------------------------------------------- /lottie/wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/lottie/wallet.json -------------------------------------------------------------------------------- /navigation/MainDrawerNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/navigation/MainDrawerNavigator.js -------------------------------------------------------------------------------- /navigation/MainTabNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/navigation/MainTabNavigator.js -------------------------------------------------------------------------------- /navigation/RootNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/navigation/RootNavigation.js -------------------------------------------------------------------------------- /navigation/SideMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/navigation/SideMenu.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/package.json -------------------------------------------------------------------------------- /screens/CameraScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screens/CameraScreen.js -------------------------------------------------------------------------------- /screens/ChartScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screens/ChartScreen.js -------------------------------------------------------------------------------- /screens/DocumentScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screens/DocumentScreen.js -------------------------------------------------------------------------------- /screens/GuideScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screens/GuideScreen.js -------------------------------------------------------------------------------- /screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screens/HomeScreen.js -------------------------------------------------------------------------------- /screens/LinksScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screens/LinksScreen.js -------------------------------------------------------------------------------- /screens/ReceiveScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screens/ReceiveScreen.js -------------------------------------------------------------------------------- /screens/SendScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screens/SendScreen.js -------------------------------------------------------------------------------- /screens/SettingsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screens/SettingsScreen.js -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /utils/firebaseUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/hophacks2018/HEAD/utils/firebaseUtil.js --------------------------------------------------------------------------------