├── .cursorrules ├── .env.sentry-build-plugin ├── .gitignore ├── .npmrc ├── DUMMY.env ├── README.md ├── app.json ├── app ├── (authenticated) │ ├── (tabs) │ │ ├── _layout.tsx │ │ ├── browse │ │ │ ├── _layout.tsx │ │ │ ├── index.tsx │ │ │ ├── new-project │ │ │ │ ├── _layout.tsx │ │ │ │ ├── color-select.tsx │ │ │ │ └── index.tsx │ │ │ └── settings.tsx │ │ ├── search │ │ │ ├── _layout.tsx │ │ │ └── index.tsx │ │ ├── today │ │ │ ├── _layout.tsx │ │ │ └── index.tsx │ │ └── upcoming │ │ │ ├── _layout.tsx │ │ │ └── index.tsx │ ├── _layout.tsx │ └── task │ │ ├── [id].tsx │ │ ├── date-select.tsx │ │ └── new.tsx ├── _layout.tsx └── index.tsx ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon-blue.png │ ├── icon-dark.png │ ├── icon-green.png │ ├── icon.png │ ├── login.png │ ├── splash-icon.png │ ├── splash.png │ └── todoist-logo.png ├── babel.config.js ├── banner.png ├── bun.lockb ├── commands.sh ├── components ├── Fab.tsx ├── MoreButton.tsx ├── Tabs.tsx ├── TaskRow.tsx └── TodoForm.tsx ├── constants └── Colors.ts ├── db └── schema.ts ├── drizzle.config.ts ├── drizzle ├── 0000_icy_blindfold.sql ├── meta │ ├── 0000_snapshot.json │ └── _journal.json └── migrations.js ├── eas.json ├── metro.config.js ├── package.json ├── providers └── RevenueCat.tsx ├── screenshots ├── 1.gif ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 2.gif ├── 2.png ├── 3.gif ├── 3.png ├── 4.gif ├── 4.png ├── 5.gif ├── 5.png ├── 6.gif ├── 6.png ├── 7.png ├── 8.gif ├── 8.png ├── 9.png ├── dsn.png ├── sentry.gif ├── sentry1.png ├── sentry2.png ├── sentry3.png └── sentry4.png ├── tsconfig.json ├── types └── interfaces.ts └── utils ├── addDummyData.ts └── cache.ts /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/.cursorrules -------------------------------------------------------------------------------- /.env.sentry-build-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/.env.sentry-build-plugin -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /DUMMY.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/DUMMY.env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app.json -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/browse/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/browse/_layout.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/browse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/browse/index.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/browse/new-project/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/browse/new-project/_layout.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/browse/new-project/color-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/browse/new-project/color-select.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/browse/new-project/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/browse/new-project/index.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/browse/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/browse/settings.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/search/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/search/_layout.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/search/index.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/today/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/today/_layout.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/today/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/today/index.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/upcoming/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/upcoming/_layout.tsx -------------------------------------------------------------------------------- /app/(authenticated)/(tabs)/upcoming/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/(tabs)/upcoming/index.tsx -------------------------------------------------------------------------------- /app/(authenticated)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/_layout.tsx -------------------------------------------------------------------------------- /app/(authenticated)/task/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/task/[id].tsx -------------------------------------------------------------------------------- /app/(authenticated)/task/date-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/(authenticated)/task/date-select.tsx -------------------------------------------------------------------------------- /app/(authenticated)/task/new.tsx: -------------------------------------------------------------------------------- 1 | export { default } from '@/components/TodoForm'; 2 | -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/app/index.tsx -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/icon-blue.png -------------------------------------------------------------------------------- /assets/images/icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/icon-dark.png -------------------------------------------------------------------------------- /assets/images/icon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/icon-green.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/login.png -------------------------------------------------------------------------------- /assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/splash-icon.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /assets/images/todoist-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/assets/images/todoist-logo.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/banner.png -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/bun.lockb -------------------------------------------------------------------------------- /commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/commands.sh -------------------------------------------------------------------------------- /components/Fab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/components/Fab.tsx -------------------------------------------------------------------------------- /components/MoreButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/components/MoreButton.tsx -------------------------------------------------------------------------------- /components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/components/Tabs.tsx -------------------------------------------------------------------------------- /components/TaskRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/components/TaskRow.tsx -------------------------------------------------------------------------------- /components/TodoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/components/TodoForm.tsx -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/db/schema.ts -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /drizzle/0000_icy_blindfold.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/drizzle/0000_icy_blindfold.sql -------------------------------------------------------------------------------- /drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /drizzle/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/drizzle/migrations.js -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/eas.json -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/package.json -------------------------------------------------------------------------------- /providers/RevenueCat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/providers/RevenueCat.tsx -------------------------------------------------------------------------------- /screenshots/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/1.gif -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/10.png -------------------------------------------------------------------------------- /screenshots/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/11.png -------------------------------------------------------------------------------- /screenshots/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/12.png -------------------------------------------------------------------------------- /screenshots/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/13.png -------------------------------------------------------------------------------- /screenshots/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/14.png -------------------------------------------------------------------------------- /screenshots/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/2.gif -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/3.gif -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/4.gif -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/5.gif -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/6.gif -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /screenshots/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/8.gif -------------------------------------------------------------------------------- /screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/8.png -------------------------------------------------------------------------------- /screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/9.png -------------------------------------------------------------------------------- /screenshots/dsn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/dsn.png -------------------------------------------------------------------------------- /screenshots/sentry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/sentry.gif -------------------------------------------------------------------------------- /screenshots/sentry1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/sentry1.png -------------------------------------------------------------------------------- /screenshots/sentry2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/sentry2.png -------------------------------------------------------------------------------- /screenshots/sentry3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/sentry3.png -------------------------------------------------------------------------------- /screenshots/sentry4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/screenshots/sentry4.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/types/interfaces.ts -------------------------------------------------------------------------------- /utils/addDummyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/utils/addDummyData.ts -------------------------------------------------------------------------------- /utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/todoist-clone-react-native/HEAD/utils/cache.ts --------------------------------------------------------------------------------