├── README.md ├── back-node-master ├── .circleci │ └── config.yml ├── .dockerignore ├── .env ├── .gitignore ├── Dockerfile ├── README.md ├── app.js ├── bin │ └── www ├── config │ ├── common.js │ ├── dbConfig.js │ ├── mailConfig.js │ └── storageConfig.js ├── creds.json ├── middleware │ ├── check_auth.js │ └── check_auth_cloud_function.js ├── package-lock.json ├── package.json └── routes │ ├── chatApi.js │ ├── countryApi.js │ ├── ethnicityApi.js │ ├── languageApi.js │ ├── matchApi.js │ ├── storageApi.js │ ├── userApi.js │ └── videoApi.js └── front-react-master ├── .gitignore ├── App.js ├── AppView.js ├── ReactotronConfig.js ├── __tests__ └── App-test.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ └── index.android.bundle │ │ ├── java │ │ └── com │ │ │ └── pys │ │ │ └── dazzleddate │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── drawable-mdpi │ │ ├── node_modules_reactnativecountrypickermodal_src_androidclose.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_danger.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_info.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_success.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_warning.png │ │ ├── node_modules_reactnativeratings_src_images_airbnbstar.png │ │ ├── node_modules_reactnativeratings_src_images_airbnbstarselected.png │ │ ├── node_modules_reactnativeratings_src_images_bell.png │ │ ├── node_modules_reactnativeratings_src_images_heart.png │ │ ├── node_modules_reactnativeratings_src_images_rocket.png │ │ ├── node_modules_reactnativeratings_src_images_star.png │ │ ├── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── node_modules_reactnavigationstack_dist_views_assets_backiconmask.png │ │ ├── src_assets_images_age.png │ │ ├── src_assets_images_b_recording.png │ │ ├── src_assets_images_back_arror.png │ │ ├── src_assets_images_browse.png │ │ ├── src_assets_images_camera.png │ │ ├── src_assets_images_chat.png │ │ ├── src_assets_images_check.png │ │ ├── src_assets_images_delete.png │ │ ├── src_assets_images_distance.png │ │ ├── src_assets_images_emailicon.png │ │ ├── src_assets_images_filters.png │ │ ├── src_assets_images_first_bg.jpg │ │ ├── src_assets_images_heart.png │ │ ├── src_assets_images_incoming.png │ │ ├── src_assets_images_location.png │ │ ├── src_assets_images_logo.png │ │ ├── src_assets_images_match.png │ │ ├── src_assets_images_myvideo.png │ │ ├── src_assets_images_name.png │ │ ├── src_assets_images_notification.png │ │ ├── src_assets_images_passwordicon.png │ │ ├── src_assets_images_picture.png │ │ ├── src_assets_images_playing.png │ │ ├── src_assets_images_profile.png │ │ ├── src_assets_images_radio.png │ │ ├── src_assets_images_recording.png │ │ ├── src_assets_images_retrying.png │ │ ├── src_assets_images_saving.png │ │ ├── src_assets_images_second_bg.png │ │ ├── src_assets_images_send.png │ │ ├── src_assets_images_stoping.png │ │ ├── src_assets_images_time.png │ │ ├── src_assets_images_uncheck.png │ │ ├── src_assets_images_unradio.png │ │ ├── src_assets_images_usericon.png │ │ └── src_assets_images_userplus.png │ │ ├── drawable-xhdpi │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_danger.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_info.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_success.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_warning.png │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── drawable-xxhdpi │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_danger.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_info.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_success.png │ │ ├── node_modules_reactnativeflashmessage_src_icons_fm_icon_warning.png │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── drawable-xxxhdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── DazzledDate-tvOS │ └── Info.plist ├── DazzledDate-tvOSTests │ └── Info.plist ├── DazzledDate.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── DazzledDate-tvOS.xcscheme │ │ └── DazzledDate.xcscheme ├── DazzledDate │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ ├── Contents.json │ │ └── splash.imageset │ │ │ ├── Contents.json │ │ │ └── splash.png │ ├── Info.plist │ └── main.m └── DazzledDateTests │ ├── DazzledDateTests.m │ └── Info.plist ├── metro.config.js ├── package-lock.json ├── package.json └── src ├── Router.js ├── assets └── images │ ├── age.png │ ├── b_recording.png │ ├── browse.png │ ├── camera.png │ ├── chat.png │ ├── check.png │ ├── delete.png │ ├── distance.png │ ├── emailIcon.png │ ├── filters.png │ ├── first_bg.jpg │ ├── heart.png │ ├── incoming.png │ ├── location.png │ ├── logo.png │ ├── match.png │ ├── myvideo.png │ ├── name.png │ ├── notification.png │ ├── passwordIcon.png │ ├── picture.png │ ├── playing.png │ ├── profile.png │ ├── radio.png │ ├── recording.png │ ├── retrying.png │ ├── saving.png │ ├── second_bg.png │ ├── send.png │ ├── stoping.png │ ├── time.png │ ├── uncheck.png │ ├── unradio.png │ ├── userIcon.png │ └── userplus.png ├── components ├── Auths │ ├── EmailConfirm.js │ ├── Login.js │ ├── Register1.js │ ├── Register2.js │ └── Signup.js ├── FirstScreen.js ├── Global.js └── Main │ ├── Browse.js │ ├── Chat.js │ ├── ChatDetail.js │ ├── ChatScreen.js │ ├── Filter.js │ ├── Income.js │ ├── IncomeDetail.js │ ├── Match.js │ ├── MyVideo.js │ ├── MyVideoDetail.js │ ├── Profile.js │ ├── ProfileDetail.js │ ├── ProfileSetting.js │ ├── Record.js │ ├── Report.js │ └── TermsPolicy.js └── config └── constants.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/README.md -------------------------------------------------------------------------------- /back-node-master/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/.circleci/config.yml -------------------------------------------------------------------------------- /back-node-master/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /back-node-master/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/.env -------------------------------------------------------------------------------- /back-node-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/.gitignore -------------------------------------------------------------------------------- /back-node-master/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/Dockerfile -------------------------------------------------------------------------------- /back-node-master/README.md: -------------------------------------------------------------------------------- 1 | # node-app 2 | 3 | Repo for backend Node project 4 | -------------------------------------------------------------------------------- /back-node-master/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/app.js -------------------------------------------------------------------------------- /back-node-master/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/bin/www -------------------------------------------------------------------------------- /back-node-master/config/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/config/common.js -------------------------------------------------------------------------------- /back-node-master/config/dbConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/config/dbConfig.js -------------------------------------------------------------------------------- /back-node-master/config/mailConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/config/mailConfig.js -------------------------------------------------------------------------------- /back-node-master/config/storageConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/config/storageConfig.js -------------------------------------------------------------------------------- /back-node-master/creds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/creds.json -------------------------------------------------------------------------------- /back-node-master/middleware/check_auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/middleware/check_auth.js -------------------------------------------------------------------------------- /back-node-master/middleware/check_auth_cloud_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/middleware/check_auth_cloud_function.js -------------------------------------------------------------------------------- /back-node-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/package-lock.json -------------------------------------------------------------------------------- /back-node-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/package.json -------------------------------------------------------------------------------- /back-node-master/routes/chatApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/routes/chatApi.js -------------------------------------------------------------------------------- /back-node-master/routes/countryApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/routes/countryApi.js -------------------------------------------------------------------------------- /back-node-master/routes/ethnicityApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/routes/ethnicityApi.js -------------------------------------------------------------------------------- /back-node-master/routes/languageApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/routes/languageApi.js -------------------------------------------------------------------------------- /back-node-master/routes/matchApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/routes/matchApi.js -------------------------------------------------------------------------------- /back-node-master/routes/storageApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/routes/storageApi.js -------------------------------------------------------------------------------- /back-node-master/routes/userApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/routes/userApi.js -------------------------------------------------------------------------------- /back-node-master/routes/videoApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/back-node-master/routes/videoApi.js -------------------------------------------------------------------------------- /front-react-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/.gitignore -------------------------------------------------------------------------------- /front-react-master/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/App.js -------------------------------------------------------------------------------- /front-react-master/AppView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/AppView.js -------------------------------------------------------------------------------- /front-react-master/ReactotronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ReactotronConfig.js -------------------------------------------------------------------------------- /front-react-master/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/__tests__/App-test.js -------------------------------------------------------------------------------- /front-react-master/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/.project -------------------------------------------------------------------------------- /front-react-master/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /front-react-master/android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/.classpath -------------------------------------------------------------------------------- /front-react-master/android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/.project -------------------------------------------------------------------------------- /front-react-master/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /front-react-master/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/BUCK -------------------------------------------------------------------------------- /front-react-master/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/build.gradle -------------------------------------------------------------------------------- /front-react-master/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/build_defs.bzl -------------------------------------------------------------------------------- /front-react-master/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/google-services.json -------------------------------------------------------------------------------- /front-react-master/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /front-react-master/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/java/com/pys/dazzleddate/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/java/com/pys/dazzleddate/MainActivity.java -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/java/com/pys/dazzleddate/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/java/com/pys/dazzleddate/MainApplication.java -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecountrypickermodal_src_androidclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecountrypickermodal_src_androidclose.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_danger.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_info.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_success.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_warning.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstar.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstarselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstarselected.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_bell.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_heart.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_rocket.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_star.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backiconmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backiconmask.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_age.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_b_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_b_recording.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_back_arror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_back_arror.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_browse.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_camera.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_chat.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_check.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_delete.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_distance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_distance.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_emailicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_emailicon.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_filters.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_first_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_first_bg.jpg -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_heart.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_incoming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_incoming.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_location.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_logo.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_match.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_myvideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_myvideo.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_name.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_notification.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_passwordicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_passwordicon.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_picture.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_playing.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_profile.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_radio.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_recording.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_retrying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_retrying.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_saving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_saving.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_second_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_second_bg.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_send.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_stoping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_stoping.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_time.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_uncheck.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_unradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_unradio.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_usericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_usericon.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_userplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-mdpi/src_assets_images_userplus.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_danger.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_info.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_success.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_warning.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_danger.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_info.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_success.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativeflashmessage_src_icons_fm_icon_warning.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/mipmap-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/mipmap-xxxhdpi/splash.png -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /front-react-master/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /front-react-master/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/build.gradle -------------------------------------------------------------------------------- /front-react-master/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/gradle.properties -------------------------------------------------------------------------------- /front-react-master/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /front-react-master/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /front-react-master/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/gradlew -------------------------------------------------------------------------------- /front-react-master/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/gradlew.bat -------------------------------------------------------------------------------- /front-react-master/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/keystores/BUCK -------------------------------------------------------------------------------- /front-react-master/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /front-react-master/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/android/settings.gradle -------------------------------------------------------------------------------- /front-react-master/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/app.json -------------------------------------------------------------------------------- /front-react-master/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/babel.config.js -------------------------------------------------------------------------------- /front-react-master/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/index.js -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate-tvOS/Info.plist -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate-tvOSTests/Info.plist -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate.xcodeproj/xcshareddata/xcschemes/DazzledDate-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate.xcodeproj/xcshareddata/xcschemes/DazzledDate-tvOS.xcscheme -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate.xcodeproj/xcshareddata/xcschemes/DazzledDate.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate.xcodeproj/xcshareddata/xcschemes/DazzledDate.xcscheme -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/AppDelegate.h -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/AppDelegate.m -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/splash.imageset/Contents.json -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Images.xcassets/splash.imageset/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Images.xcassets/splash.imageset/splash.png -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/Info.plist -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDate/main.m -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDateTests/DazzledDateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDateTests/DazzledDateTests.m -------------------------------------------------------------------------------- /front-react-master/ios/DazzledDateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/ios/DazzledDateTests/Info.plist -------------------------------------------------------------------------------- /front-react-master/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/metro.config.js -------------------------------------------------------------------------------- /front-react-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/package-lock.json -------------------------------------------------------------------------------- /front-react-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/package.json -------------------------------------------------------------------------------- /front-react-master/src/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/Router.js -------------------------------------------------------------------------------- /front-react-master/src/assets/images/age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/age.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/b_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/b_recording.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/browse.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/camera.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/chat.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/check.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/delete.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/distance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/distance.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/emailIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/emailIcon.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/filters.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/first_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/first_bg.jpg -------------------------------------------------------------------------------- /front-react-master/src/assets/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/heart.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/incoming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/incoming.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/location.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/logo.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/match.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/myvideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/myvideo.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/name.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/notification.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/passwordIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/passwordIcon.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/picture.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/playing.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/profile.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/radio.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/recording.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/retrying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/retrying.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/saving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/saving.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/second_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/second_bg.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/send.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/stoping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/stoping.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/time.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/uncheck.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/unradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/unradio.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/userIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/userIcon.png -------------------------------------------------------------------------------- /front-react-master/src/assets/images/userplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/assets/images/userplus.png -------------------------------------------------------------------------------- /front-react-master/src/components/Auths/EmailConfirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Auths/EmailConfirm.js -------------------------------------------------------------------------------- /front-react-master/src/components/Auths/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Auths/Login.js -------------------------------------------------------------------------------- /front-react-master/src/components/Auths/Register1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Auths/Register1.js -------------------------------------------------------------------------------- /front-react-master/src/components/Auths/Register2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Auths/Register2.js -------------------------------------------------------------------------------- /front-react-master/src/components/Auths/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Auths/Signup.js -------------------------------------------------------------------------------- /front-react-master/src/components/FirstScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/FirstScreen.js -------------------------------------------------------------------------------- /front-react-master/src/components/Global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Global.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/Browse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/Browse.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/Chat.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/ChatDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/ChatDetail.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/ChatScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/ChatScreen.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/Filter.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/Income.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/Income.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/IncomeDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/IncomeDetail.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/Match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/Match.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/MyVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/MyVideo.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/MyVideoDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/MyVideoDetail.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/Profile.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/ProfileDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/ProfileDetail.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/ProfileSetting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/ProfileSetting.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/Record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/Record.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/Report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/Report.js -------------------------------------------------------------------------------- /front-react-master/src/components/Main/TermsPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/components/Main/TermsPolicy.js -------------------------------------------------------------------------------- /front-react-master/src/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/DazzledDate_ReactNative/HEAD/front-react-master/src/config/constants.js --------------------------------------------------------------------------------