├── .gitignore ├── README.md ├── app.json ├── app ├── (modals) │ └── new-chat.tsx ├── (tabs) │ ├── _layout.tsx │ ├── calls │ │ ├── _layout.tsx │ │ └── index.tsx │ ├── chats │ │ ├── [id].tsx │ │ ├── _layout.tsx │ │ └── index.tsx │ ├── communities.tsx │ ├── settings │ │ ├── _layout.tsx │ │ └── index.tsx │ └── updates.tsx ├── _layout.tsx ├── index.tsx ├── otp.tsx └── verify │ └── [phone].tsx ├── assets ├── data │ ├── calls.json │ ├── chats.json │ ├── contacts.json │ └── messages.json ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ ├── pattern.png │ ├── splash.png │ └── welcome.png ├── babel.config.js ├── banner.png ├── commands.sh ├── components ├── AppleStyleSwipeableRow.tsx ├── BoxedIcon.tsx ├── ChatMessageBox.tsx ├── ChatRow.tsx ├── ReplyMessageBar.tsx ├── SegmentedControl.tsx └── SwipeableRow.tsx ├── constants ├── Colors.ts └── Styles.ts ├── package.json ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── calls.gif ├── chats.gif ├── contacts.gif └── messages.gif └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app.json -------------------------------------------------------------------------------- /app/(modals)/new-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(modals)/new-chat.tsx -------------------------------------------------------------------------------- /app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/calls/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/calls/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/calls/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/calls/index.tsx -------------------------------------------------------------------------------- /app/(tabs)/chats/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/chats/[id].tsx -------------------------------------------------------------------------------- /app/(tabs)/chats/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/chats/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/chats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/chats/index.tsx -------------------------------------------------------------------------------- /app/(tabs)/communities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/communities.tsx -------------------------------------------------------------------------------- /app/(tabs)/settings/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/settings/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/settings/index.tsx -------------------------------------------------------------------------------- /app/(tabs)/updates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/(tabs)/updates.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/index.tsx -------------------------------------------------------------------------------- /app/otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/otp.tsx -------------------------------------------------------------------------------- /app/verify/[phone].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/app/verify/[phone].tsx -------------------------------------------------------------------------------- /assets/data/calls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/data/calls.json -------------------------------------------------------------------------------- /assets/data/chats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/data/chats.json -------------------------------------------------------------------------------- /assets/data/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/data/contacts.json -------------------------------------------------------------------------------- /assets/data/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/data/messages.json -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/images/pattern.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /assets/images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/assets/images/welcome.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/banner.png -------------------------------------------------------------------------------- /commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/commands.sh -------------------------------------------------------------------------------- /components/AppleStyleSwipeableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/components/AppleStyleSwipeableRow.tsx -------------------------------------------------------------------------------- /components/BoxedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/components/BoxedIcon.tsx -------------------------------------------------------------------------------- /components/ChatMessageBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/components/ChatMessageBox.tsx -------------------------------------------------------------------------------- /components/ChatRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/components/ChatRow.tsx -------------------------------------------------------------------------------- /components/ReplyMessageBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/components/ReplyMessageBar.tsx -------------------------------------------------------------------------------- /components/SegmentedControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/components/SegmentedControl.tsx -------------------------------------------------------------------------------- /components/SwipeableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/components/SwipeableRow.tsx -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /constants/Styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/constants/Styles.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/8.png -------------------------------------------------------------------------------- /screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/9.png -------------------------------------------------------------------------------- /screenshots/calls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/calls.gif -------------------------------------------------------------------------------- /screenshots/chats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/chats.gif -------------------------------------------------------------------------------- /screenshots/contacts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/contacts.gif -------------------------------------------------------------------------------- /screenshots/messages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/screenshots/messages.gif -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/whatsapp-clone-react-native/HEAD/tsconfig.json --------------------------------------------------------------------------------