├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── README.md ├── app.json ├── assets ├── favicon.png ├── icon.png ├── money_background.png ├── money_in_hand.json ├── send_money.json └── splash.png ├── babel.config.js ├── output.gif ├── package.json ├── screens ├── moneyAmount.js ├── userInfo.js └── users.js ├── services └── firebase.js └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/app.json -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/money_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/assets/money_background.png -------------------------------------------------------------------------------- /assets/money_in_hand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/assets/money_in_hand.json -------------------------------------------------------------------------------- /assets/send_money.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/assets/send_money.json -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/babel.config.js -------------------------------------------------------------------------------- /output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/output.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/package.json -------------------------------------------------------------------------------- /screens/moneyAmount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/screens/moneyAmount.js -------------------------------------------------------------------------------- /screens/userInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/screens/userInfo.js -------------------------------------------------------------------------------- /screens/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/screens/users.js -------------------------------------------------------------------------------- /services/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/services/firebase.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/EasyMoneyTransfer/HEAD/yarn.lock --------------------------------------------------------------------------------