├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── components │ ├── AppBar.jsx │ ├── Main.jsx │ ├── RepositoryItem.jsx │ ├── RepositoryList.jsx │ ├── RepositoryStats.jsx │ └── StyledText.jsx ├── data │ └── repositories.js └── theme.js └── webpack.config.js /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/App.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/package.json -------------------------------------------------------------------------------- /src/components/AppBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/src/components/AppBar.jsx -------------------------------------------------------------------------------- /src/components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/src/components/Main.jsx -------------------------------------------------------------------------------- /src/components/RepositoryItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/src/components/RepositoryItem.jsx -------------------------------------------------------------------------------- /src/components/RepositoryList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/src/components/RepositoryList.jsx -------------------------------------------------------------------------------- /src/components/RepositoryStats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/src/components/RepositoryStats.jsx -------------------------------------------------------------------------------- /src/components/StyledText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/src/components/StyledText.jsx -------------------------------------------------------------------------------- /src/data/repositories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/src/data/repositories.js -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/src/theme.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/rate-repository-app/HEAD/webpack.config.js --------------------------------------------------------------------------------