├── .expo-shared ├── README.md └── assets.json ├── .gitignore ├── App.tsx ├── LICENSE ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── data │ └── demo.ts ├── favicon.png ├── icon.png ├── images │ ├── 01.jpg │ ├── 02.jpg │ ├── 03.jpg │ ├── 04.jpg │ ├── 05.jpg │ ├── 06.jpg │ ├── 07.jpg │ ├── 08.jpg │ ├── 09.jpg │ ├── 10.jpg │ └── bg.png ├── splash.png └── styles │ └── index.ts ├── babel.config.js ├── components ├── CardItem.tsx ├── City.tsx ├── Filters.tsx ├── Icon.tsx ├── Message.tsx ├── ProfileItem.tsx ├── TabBarIcon.tsx └── index.ts ├── images.d.ts ├── package.json ├── preview ├── capture-1.png ├── capture-2.png ├── capture-3.png ├── capture-4.png ├── tinder-clone-logo.gif └── tinderclone-preview.gif ├── screens ├── Home.tsx ├── Matches.tsx ├── Messages.tsx ├── Profile.tsx └── index.ts ├── tsconfig.json ├── types.ts └── yarn.lock /.expo-shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/.expo-shared/README.md -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/App.tsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/data/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/data/demo.ts -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/images/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/01.jpg -------------------------------------------------------------------------------- /assets/images/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/02.jpg -------------------------------------------------------------------------------- /assets/images/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/03.jpg -------------------------------------------------------------------------------- /assets/images/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/04.jpg -------------------------------------------------------------------------------- /assets/images/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/05.jpg -------------------------------------------------------------------------------- /assets/images/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/06.jpg -------------------------------------------------------------------------------- /assets/images/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/07.jpg -------------------------------------------------------------------------------- /assets/images/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/08.jpg -------------------------------------------------------------------------------- /assets/images/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/09.jpg -------------------------------------------------------------------------------- /assets/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/10.jpg -------------------------------------------------------------------------------- /assets/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/images/bg.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/assets/styles/index.ts -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/CardItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/components/CardItem.tsx -------------------------------------------------------------------------------- /components/City.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/components/City.tsx -------------------------------------------------------------------------------- /components/Filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/components/Filters.tsx -------------------------------------------------------------------------------- /components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/components/Icon.tsx -------------------------------------------------------------------------------- /components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/components/Message.tsx -------------------------------------------------------------------------------- /components/ProfileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/components/ProfileItem.tsx -------------------------------------------------------------------------------- /components/TabBarIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/components/TabBarIcon.tsx -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/components/index.ts -------------------------------------------------------------------------------- /images.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.jpg"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/package.json -------------------------------------------------------------------------------- /preview/capture-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/preview/capture-1.png -------------------------------------------------------------------------------- /preview/capture-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/preview/capture-2.png -------------------------------------------------------------------------------- /preview/capture-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/preview/capture-3.png -------------------------------------------------------------------------------- /preview/capture-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/preview/capture-4.png -------------------------------------------------------------------------------- /preview/tinder-clone-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/preview/tinder-clone-logo.gif -------------------------------------------------------------------------------- /preview/tinderclone-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/preview/tinderclone-preview.gif -------------------------------------------------------------------------------- /screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/screens/Home.tsx -------------------------------------------------------------------------------- /screens/Matches.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/screens/Matches.tsx -------------------------------------------------------------------------------- /screens/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/screens/Messages.tsx -------------------------------------------------------------------------------- /screens/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/screens/Profile.tsx -------------------------------------------------------------------------------- /screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/screens/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/types.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpersia/tinder-expo/HEAD/yarn.lock --------------------------------------------------------------------------------