├── .gitignore ├── DUMMY.env ├── LICENSE ├── README.md ├── app.json ├── app ├── (auth) │ ├── (drawer) │ │ ├── (chat) │ │ │ ├── [id].tsx │ │ │ └── new.tsx │ │ ├── _layout.tsx │ │ ├── dalle.tsx │ │ └── explore.tsx │ ├── (modal) │ │ ├── image │ │ │ └── [url].tsx │ │ ├── purchase.tsx │ │ └── settings.tsx │ └── _layout.tsx ├── _layout.tsx ├── index.tsx └── login.tsx ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── dalle.png │ ├── favicon.png │ ├── icon.png │ ├── logo-dark.png │ ├── logo-white.png │ └── splash.png ├── babel.config.js ├── banner.png ├── commands.sh ├── components ├── AnimatedIntro.tsx ├── BottomLoginSheet.tsx ├── ChatMessage.tsx ├── ChatPage.tsx ├── DropDownMenu.tsx ├── HeaderDropDown.tsx ├── MessageIdeas.tsx └── MessageInput.tsx ├── constants ├── Colors.ts └── Styles.ts ├── package.json ├── providers └── RevenueCat.tsx ├── screenshots ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── chat.gif ├── context.gif ├── dalle.gif ├── explore.gif ├── imagecontext.gif ├── imagezoom.gif ├── intro.gif ├── purchase.gif └── sqlite.gif ├── tsconfig.json └── utils ├── Database.ts ├── Image.ts ├── Interfaces.ts └── Storage.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /DUMMY.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/DUMMY.env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app.json -------------------------------------------------------------------------------- /app/(auth)/(drawer)/(chat)/[id].tsx: -------------------------------------------------------------------------------- 1 | export { default } from '@/components/ChatPage'; 2 | -------------------------------------------------------------------------------- /app/(auth)/(drawer)/(chat)/new.tsx: -------------------------------------------------------------------------------- 1 | export { default } from '@/components/ChatPage'; 2 | -------------------------------------------------------------------------------- /app/(auth)/(drawer)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/(auth)/(drawer)/_layout.tsx -------------------------------------------------------------------------------- /app/(auth)/(drawer)/dalle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/(auth)/(drawer)/dalle.tsx -------------------------------------------------------------------------------- /app/(auth)/(drawer)/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/(auth)/(drawer)/explore.tsx -------------------------------------------------------------------------------- /app/(auth)/(modal)/image/[url].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/(auth)/(modal)/image/[url].tsx -------------------------------------------------------------------------------- /app/(auth)/(modal)/purchase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/(auth)/(modal)/purchase.tsx -------------------------------------------------------------------------------- /app/(auth)/(modal)/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/(auth)/(modal)/settings.tsx -------------------------------------------------------------------------------- /app/(auth)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/(auth)/_layout.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/index.tsx -------------------------------------------------------------------------------- /app/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/app/login.tsx -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/dalle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/assets/images/dalle.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/assets/images/logo-dark.png -------------------------------------------------------------------------------- /assets/images/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/assets/images/logo-white.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/banner.png -------------------------------------------------------------------------------- /commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/commands.sh -------------------------------------------------------------------------------- /components/AnimatedIntro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/components/AnimatedIntro.tsx -------------------------------------------------------------------------------- /components/BottomLoginSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/components/BottomLoginSheet.tsx -------------------------------------------------------------------------------- /components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/components/ChatMessage.tsx -------------------------------------------------------------------------------- /components/ChatPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/components/ChatPage.tsx -------------------------------------------------------------------------------- /components/DropDownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/components/DropDownMenu.tsx -------------------------------------------------------------------------------- /components/HeaderDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/components/HeaderDropDown.tsx -------------------------------------------------------------------------------- /components/MessageIdeas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/components/MessageIdeas.tsx -------------------------------------------------------------------------------- /components/MessageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/components/MessageInput.tsx -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /constants/Styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/constants/Styles.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/package.json -------------------------------------------------------------------------------- /providers/RevenueCat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/providers/RevenueCat.tsx -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/10.png -------------------------------------------------------------------------------- /screenshots/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/11.png -------------------------------------------------------------------------------- /screenshots/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/12.png -------------------------------------------------------------------------------- /screenshots/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/13.png -------------------------------------------------------------------------------- /screenshots/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/14.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/8.png -------------------------------------------------------------------------------- /screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/9.png -------------------------------------------------------------------------------- /screenshots/chat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/chat.gif -------------------------------------------------------------------------------- /screenshots/context.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/context.gif -------------------------------------------------------------------------------- /screenshots/dalle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/dalle.gif -------------------------------------------------------------------------------- /screenshots/explore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/explore.gif -------------------------------------------------------------------------------- /screenshots/imagecontext.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/imagecontext.gif -------------------------------------------------------------------------------- /screenshots/imagezoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/imagezoom.gif -------------------------------------------------------------------------------- /screenshots/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/intro.gif -------------------------------------------------------------------------------- /screenshots/purchase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/purchase.gif -------------------------------------------------------------------------------- /screenshots/sqlite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/screenshots/sqlite.gif -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/utils/Database.ts -------------------------------------------------------------------------------- /utils/Image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/utils/Image.ts -------------------------------------------------------------------------------- /utils/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/utils/Interfaces.ts -------------------------------------------------------------------------------- /utils/Storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/chatgpt-clone-react-native/HEAD/utils/Storage.ts --------------------------------------------------------------------------------