├── .gitignore ├── DUMMY.env ├── README.md ├── app.json ├── app ├── (chat) │ └── [chatid].tsx ├── (modal) │ └── create.tsx ├── _layout.tsx └── index.tsx ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── chatGroups.jsonl ├── convex ├── README.md ├── _generated │ ├── api.d.ts │ ├── api.js │ ├── dataModel.d.ts │ ├── server.d.ts │ └── server.js ├── greeting.ts ├── groups.ts ├── http.ts ├── messages.ts ├── schema.ts └── tsconfig.json ├── metro.config.js ├── package.json ├── screenshots ├── 1.png ├── 2.png └── 3.png └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/.gitignore -------------------------------------------------------------------------------- /DUMMY.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/DUMMY.env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/app.json -------------------------------------------------------------------------------- /app/(chat)/[chatid].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/app/(chat)/[chatid].tsx -------------------------------------------------------------------------------- /app/(modal)/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/app/(modal)/create.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/app/index.tsx -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/babel.config.js -------------------------------------------------------------------------------- /chatGroups.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/chatGroups.jsonl -------------------------------------------------------------------------------- /convex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/README.md -------------------------------------------------------------------------------- /convex/_generated/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/_generated/api.d.ts -------------------------------------------------------------------------------- /convex/_generated/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/_generated/api.js -------------------------------------------------------------------------------- /convex/_generated/dataModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/_generated/dataModel.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/_generated/server.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/_generated/server.js -------------------------------------------------------------------------------- /convex/greeting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/greeting.ts -------------------------------------------------------------------------------- /convex/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/groups.ts -------------------------------------------------------------------------------- /convex/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/http.ts -------------------------------------------------------------------------------- /convex/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/messages.ts -------------------------------------------------------------------------------- /convex/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/schema.ts -------------------------------------------------------------------------------- /convex/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/convex/tsconfig.json -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/react-native-chat-convex/HEAD/tsconfig.json --------------------------------------------------------------------------------