├── .all-contributorsrc ├── .expo ├── README.md ├── devices.json ├── packager-info.json └── settings.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── ticket-.md └── pull_request_template.md ├── .gitignore ├── .vscode └── settings.json ├── App.tsx ├── CODE_OF_CONDUCT.md ├── Contributing.md ├── README.md ├── SECURITY.md ├── app.json ├── assets ├── adaptive-icon.png ├── aibot_one.png ├── chat1.jpg ├── chat1.png ├── chatbot.png ├── choice.jpg ├── download.jpeg ├── favicon.png ├── icon.png ├── illus2.jpg ├── load2.gif └── splash.png ├── babel.config.js ├── metro.config.js ├── package.json ├── socket.io-backend ├── .gitignore ├── handlers │ └── message.handler.js ├── package.json └── server.js ├── src ├── Screens │ ├── ChatClient.js │ ├── LoadingScreen.tsx │ ├── LoginScreen.tsx │ ├── SignupScreen.tsx │ ├── WelcomeScreen.tsx │ ├── chatlist.js │ ├── choice.js │ ├── createchat.js │ └── createimage.js ├── components │ ├── button1.js │ ├── colors.js │ ├── export.js │ ├── input │ │ └── TextInput.tsx │ └── response-item.js ├── firebase-utilities.ts ├── navigation │ └── navigation.tsx ├── state-managment │ ├── actions.js │ ├── reducers.js │ └── store.js └── utility │ └── utilities-funtions.js └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/.expo/README.md -------------------------------------------------------------------------------- /.expo/devices.json: -------------------------------------------------------------------------------- 1 | { 2 | "devices": [] 3 | } 4 | -------------------------------------------------------------------------------- /.expo/packager-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/.expo/packager-info.json -------------------------------------------------------------------------------- /.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/.expo/settings.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ticket-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/.github/ISSUE_TEMPLATE/ticket-.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/App.tsx -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/Contributing.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/aibot_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/aibot_one.png -------------------------------------------------------------------------------- /assets/chat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/chat1.jpg -------------------------------------------------------------------------------- /assets/chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/chat1.png -------------------------------------------------------------------------------- /assets/chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/chatbot.png -------------------------------------------------------------------------------- /assets/choice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/choice.jpg -------------------------------------------------------------------------------- /assets/download.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/download.jpeg -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/illus2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/illus2.jpg -------------------------------------------------------------------------------- /assets/load2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/load2.gif -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/babel.config.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/package.json -------------------------------------------------------------------------------- /socket.io-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/socket.io-backend/.gitignore -------------------------------------------------------------------------------- /socket.io-backend/handlers/message.handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/socket.io-backend/handlers/message.handler.js -------------------------------------------------------------------------------- /socket.io-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/socket.io-backend/package.json -------------------------------------------------------------------------------- /socket.io-backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/socket.io-backend/server.js -------------------------------------------------------------------------------- /src/Screens/ChatClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/Screens/ChatClient.js -------------------------------------------------------------------------------- /src/Screens/LoadingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/Screens/LoadingScreen.tsx -------------------------------------------------------------------------------- /src/Screens/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/Screens/LoginScreen.tsx -------------------------------------------------------------------------------- /src/Screens/SignupScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/Screens/SignupScreen.tsx -------------------------------------------------------------------------------- /src/Screens/WelcomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/Screens/WelcomeScreen.tsx -------------------------------------------------------------------------------- /src/Screens/chatlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/Screens/chatlist.js -------------------------------------------------------------------------------- /src/Screens/choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/Screens/choice.js -------------------------------------------------------------------------------- /src/Screens/createchat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/Screens/createchat.js -------------------------------------------------------------------------------- /src/Screens/createimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/Screens/createimage.js -------------------------------------------------------------------------------- /src/components/button1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/components/button1.js -------------------------------------------------------------------------------- /src/components/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/components/colors.js -------------------------------------------------------------------------------- /src/components/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/components/export.js -------------------------------------------------------------------------------- /src/components/input/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/components/input/TextInput.tsx -------------------------------------------------------------------------------- /src/components/response-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/components/response-item.js -------------------------------------------------------------------------------- /src/firebase-utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/firebase-utilities.ts -------------------------------------------------------------------------------- /src/navigation/navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/navigation/navigation.tsx -------------------------------------------------------------------------------- /src/state-managment/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/state-managment/actions.js -------------------------------------------------------------------------------- /src/state-managment/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/state-managment/reducers.js -------------------------------------------------------------------------------- /src/state-managment/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/state-managment/store.js -------------------------------------------------------------------------------- /src/utility/utilities-funtions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/src/utility/utilities-funtions.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Unleashed-Club/openMind/HEAD/tsconfig.json --------------------------------------------------------------------------------