├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── LICENSE ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── components ├── Bird.js ├── Floor.js └── Obstacle.js ├── entities └── index.js ├── package.json ├── physics.js └── utils └── random.js /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Bird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/components/Bird.js -------------------------------------------------------------------------------- /components/Floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/components/Floor.js -------------------------------------------------------------------------------- /components/Obstacle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/components/Obstacle.js -------------------------------------------------------------------------------- /entities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/entities/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/package.json -------------------------------------------------------------------------------- /physics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/physics.js -------------------------------------------------------------------------------- /utils/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimCoderYoutube/FlappyBirdClone/HEAD/utils/random.js --------------------------------------------------------------------------------