├── .editorconfig ├── .eslintrc.json ├── .expo-shared └── assets.json ├── .github ├── Doing.jpeg ├── Done.jpeg ├── ToDo.jpeg └── Video.gif ├── .gitignore ├── .prettierrc ├── App.tsx ├── LICENSE.md ├── README.md ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── config │ └── firebase.ts ├── pages │ └── TaskList │ │ ├── index.tsx │ │ └── styles.tsx └── routes.tsx ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.github/Doing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/.github/Doing.jpeg -------------------------------------------------------------------------------- /.github/Done.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/.github/Done.jpeg -------------------------------------------------------------------------------- /.github/ToDo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/.github/ToDo.jpeg -------------------------------------------------------------------------------- /.github/Video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/.github/Video.gif -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/App.tsx -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/package.json -------------------------------------------------------------------------------- /src/config/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/src/config/firebase.ts -------------------------------------------------------------------------------- /src/pages/TaskList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/src/pages/TaskList/index.tsx -------------------------------------------------------------------------------- /src/pages/TaskList/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/src/pages/TaskList/styles.tsx -------------------------------------------------------------------------------- /src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/src/routes.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorserrano/task-manager/HEAD/yarn.lock --------------------------------------------------------------------------------