├── .bolt └── config.json ├── .env.local.example ├── .gitignore ├── .prettierrc ├── README.md ├── app.json ├── app ├── +not-found.tsx ├── _layout.tsx ├── index.tsx └── note │ └── [id].tsx ├── assets └── images │ ├── favicon.png │ └── icon.png ├── bun.lockb ├── components └── SwipeableNote.tsx ├── context └── NotesContext.tsx ├── hooks └── useFrameworkReady.ts ├── package.json └── tsconfig.json /.bolt/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "bolt-expo" 3 | } 4 | -------------------------------------------------------------------------------- /.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/.env.local.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/app.json -------------------------------------------------------------------------------- /app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/app/+not-found.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/app/index.tsx -------------------------------------------------------------------------------- /app/note/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/app/note/[id].tsx -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/bun.lockb -------------------------------------------------------------------------------- /components/SwipeableNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/components/SwipeableNote.tsx -------------------------------------------------------------------------------- /context/NotesContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/context/NotesContext.tsx -------------------------------------------------------------------------------- /hooks/useFrameworkReady.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/hooks/useFrameworkReady.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betomoedano/notes-app/HEAD/tsconfig.json --------------------------------------------------------------------------------