├── .gitignore ├── App.js ├── Constants.js ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png ├── images │ ├── bus.png │ └── mrt.jpg └── splash.png ├── babel.config.js ├── components ├── AppNavigator.js ├── CustomCard.js ├── FromTo.js ├── HomeScreen.js ├── PaymentScreen.js └── ScheduleScreen.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/App.js -------------------------------------------------------------------------------- /Constants.js: -------------------------------------------------------------------------------- 1 | export const PRIMARYCOLOR="#3A9EC2"; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/images/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/assets/images/bus.png -------------------------------------------------------------------------------- /assets/images/mrt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/assets/images/mrt.jpg -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/components/AppNavigator.js -------------------------------------------------------------------------------- /components/CustomCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/components/CustomCard.js -------------------------------------------------------------------------------- /components/FromTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/components/FromTo.js -------------------------------------------------------------------------------- /components/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/components/HomeScreen.js -------------------------------------------------------------------------------- /components/PaymentScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/components/PaymentScreen.js -------------------------------------------------------------------------------- /components/ScheduleScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/components/ScheduleScreen.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudheersuri/public-transportation-mobile-application/HEAD/package.json --------------------------------------------------------------------------------