gitextract_xz414na9/ ├── .expo-shared/ │ ├── README.md │ └── assets.json ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── App.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── metro.config.js ├── package.json ├── patches/ │ └── react-native-gesture-handler+2.2.1.patch ├── pull_request_template.md ├── src/ │ ├── @types/ │ │ ├── SceneName.ts │ │ ├── User.ts │ │ ├── modules.d.ts │ │ ├── react-navigation.d.ts │ │ └── styled-components.d.ts │ ├── assets/ │ │ ├── animations/ │ │ │ ├── disconnected.json │ │ │ ├── empty.json │ │ │ ├── error.json │ │ │ ├── inverseLoadingDots.json │ │ │ ├── loadingLogo.json │ │ │ ├── location.json │ │ │ ├── primaryLoadingDots.json │ │ │ └── swipe.json │ │ └── fonts/ │ │ ├── Gilroy-Bold.hhea.xml │ │ ├── Gilroy-ExtraBold.hhea.xml │ │ ├── Gilroy-Light.hhea.xml │ │ ├── Gilroy-Medium.hhea.xml │ │ ├── Gilroy-Regular.hhea.xml │ │ └── Gilroy-SemiBold.hhea.xml │ ├── components/ │ │ ├── Button/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Divider.ts │ │ ├── FeedbackCard/ │ │ │ ├── components/ │ │ │ │ ├── LikeFeedback/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── MaybeFeedback/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ └── NopeFeedback/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Glassmorphism/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Input/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Loading.ts │ │ ├── MainCard/ │ │ │ ├── components/ │ │ │ │ ├── Distance/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── Pagination/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ └── PersonalInfo/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── MatchActionBar/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Navbar/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── RadioButtons/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── SafeComponent/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Text.ts │ │ └── index.ts │ ├── constants.ts │ ├── index.tsx │ ├── services/ │ │ ├── api.ts │ │ ├── navigation.ts │ │ ├── reactotron.ts │ │ └── utils.ts │ ├── store/ │ │ ├── index.ts │ │ ├── reducers/ │ │ │ ├── index.ts │ │ │ └── users/ │ │ │ ├── index.ts │ │ │ ├── list.ts │ │ │ └── swipe.ts │ │ ├── sagas/ │ │ │ ├── index.ts │ │ │ └── users/ │ │ │ ├── index.ts │ │ │ ├── list.ts │ │ │ └── swipe.ts │ │ └── selectors.ts │ ├── themes.ts │ └── views/ │ ├── Authentication/ │ │ ├── components/ │ │ │ ├── HeroText/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ └── PhoneInput/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── Chat/ │ │ ├── components/ │ │ │ ├── DateMessage.tsx │ │ │ ├── Feedback.tsx │ │ │ ├── Header/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Message/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── NextDay/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Send/ │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── useSendMessage.ts │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── store/ │ │ │ ├── index.tsx │ │ │ ├── reducers.ts │ │ │ └── selectors.ts │ │ └── styles.ts │ ├── EditProfile/ │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── utils/ │ │ └── index.ts │ ├── Messages/ │ │ ├── __mocks__/ │ │ │ └── index.ts │ │ ├── components/ │ │ │ ├── Header/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Message/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ └── Preview/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── OneTimeCode/ │ │ ├── components/ │ │ │ ├── CodeInput/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── CustomKeyboard/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ └── GoBack/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── hooks/ │ │ │ └── useTimer.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── Swipe/ │ │ ├── components/ │ │ │ ├── SwipeBackButton/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── SwipeHandler/ │ │ │ │ ├── hooks/ │ │ │ │ │ └── useSwipeGesture.ts │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ └── SwipeRequestFeedback/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── UserProfile/ │ │ ├── components/ │ │ │ └── GoBack/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts │ └── index.routes.tsx └── tsconfig.json