├── .babelrc ├── .buckconfig ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── README_files ├── SS.png └── Video.png ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── property │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.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 ├── assets ├── country-bg │ ├── AE.jpg │ ├── BH.jpg │ ├── KW.jpg │ ├── OM.jpg │ ├── QA.jpg │ └── SA.jpg ├── country-flags │ ├── AE.png │ ├── AE@2x.png │ ├── AE@3x.png │ ├── BH.png │ ├── BH@2x.png │ ├── BH@3x.png │ ├── KW.png │ ├── KW@2x.png │ ├── KW@3x.png │ ├── OM.png │ ├── OM@2x.png │ ├── OM@3x.png │ ├── QA.png │ ├── QA@2x.png │ ├── QA@3x.png │ ├── SA.png │ ├── SA@2x.png │ └── SA@3x.png ├── empty.png ├── fireworks.png ├── login-bg.png ├── logo.png ├── navbar.png ├── splash │ ├── screen1.png │ ├── screen2.png │ ├── screen3.png │ └── screen4.png └── startup.png ├── index.android.js ├── index.ios.js ├── ios ├── Default-568h@2x.png ├── Splash@2x.png ├── YTPlayerView-iframe-player.html ├── property-tvOS │ └── Info.plist ├── property-tvOSTests │ └── Info.plist ├── property.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── property-tvOS.xcscheme │ │ └── property.xcscheme ├── property │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── key home@2x.png │ │ │ └── key home@3x.png │ ├── Info.plist │ └── main.m └── propertyTests │ ├── Info.plist │ └── propertyTests.m ├── jest └── setup.js ├── package.json ├── src ├── Root.js ├── __tests │ └── Root.js ├── app │ ├── App.js │ ├── AppNotification.js │ ├── Splash.js │ ├── common │ │ ├── __tests__ │ │ │ ├── actions.js │ │ │ └── reducer.js │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── sagas.js │ │ └── selectors.js │ └── components │ │ ├── Notification.js │ │ ├── SplashScene.js │ │ └── __tests__ │ │ ├── Notification.js │ │ └── __snapshots__ │ │ └── Notification.js.snap ├── auth │ ├── Forgot.js │ ├── Login.js │ ├── Register.js │ ├── common │ │ ├── __test__ │ │ │ ├── actions.js │ │ │ └── reducer.js │ │ ├── actions.js │ │ ├── api.js │ │ ├── reducer.js │ │ ├── sagas.js │ │ └── selectors.js │ └── scenes │ │ ├── ConfirmScene.js │ │ ├── ForgotScene.js │ │ ├── LoginScene.js │ │ ├── PasswordUpdateScene.js │ │ ├── RegisterScene.js │ │ └── __tests__ │ │ ├── LoginScene.js │ │ ├── RegisterScene.js │ │ └── __snapshots__ │ │ ├── LoginScene.js.snap │ │ └── RegisterScene.js.snap ├── common │ ├── api.js │ ├── colors.js │ ├── countryBackground.js │ ├── flag.js │ ├── functions.js │ ├── navigator.js │ ├── orm.js │ ├── ormReducer.js │ ├── reducers.js │ ├── sagas.js │ ├── storage.js │ └── store.js ├── components │ ├── LoadingIndicator.js │ ├── NavBar.js │ ├── NavButton.js │ ├── NavigationService.js │ ├── Separator.js │ ├── VideoPlayer.js │ ├── YoutubePlayer.js │ └── __tests__ │ │ ├── LoadingIndicator.js │ │ ├── NavBar.js │ │ ├── NavButton.js │ │ ├── Separator.js │ │ └── __snapshots__ │ │ ├── LoadingIndicator.js.snap │ │ ├── NavBar.js.snap │ │ ├── NavButton.js.snap │ │ └── Separator.js.snap ├── env.js ├── property │ ├── PropertyCreate.js │ ├── PropertyDetail.js │ ├── PropertyEdit.js │ ├── PropertyFavorites.js │ ├── PropertyFilter.js │ ├── PropertyHome.js │ ├── PropertyList.js │ ├── PropertyLocationPicker.js │ ├── PropertyManager.js │ ├── common │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── actions.js.snap │ │ │ ├── actions.js │ │ │ ├── reducer.js │ │ │ └── selectors.js │ │ ├── actions.js │ │ ├── api.js │ │ ├── attributes.js │ │ ├── model.js │ │ ├── proptypes.js │ │ ├── reducer.js │ │ ├── reducerHelper.js │ │ ├── sagas.js │ │ └── selectors.js │ ├── components │ │ ├── EmptyResult.js │ │ ├── Favorite.js │ │ ├── Gallery.js │ │ ├── PropertyIcons.js │ │ ├── PropertyMap.js │ │ ├── PropertyRelatedList.js │ │ ├── PropertyTags.js │ │ ├── ResultHint.js │ │ ├── __tests__ │ │ │ ├── Favorite.js │ │ │ ├── Gallery.js │ │ │ ├── PropertyIcons.js │ │ │ ├── PropertyTags.js │ │ │ └── __snapshots__ │ │ │ │ ├── Favorite.js.snap │ │ │ │ ├── Gallery.js.snap │ │ │ │ ├── PropertyIcons.js.snap │ │ │ │ └── PropertyTags.js.snap │ │ ├── create │ │ │ ├── AddressPicker.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ ├── List.js │ │ │ ├── NavBack.js │ │ │ ├── PriceMarker.js │ │ │ ├── PropertyAmenities.js │ │ │ ├── PropertyInfo.js │ │ │ ├── PropertyMeta.js │ │ │ ├── UploadImage.js │ │ │ ├── UploadVideo.js │ │ │ └── __tests__ │ │ │ │ ├── AddressPicker.js │ │ │ │ ├── Footer.js │ │ │ │ ├── Header.js │ │ │ │ ├── List.js │ │ │ │ ├── NavBack.js │ │ │ │ ├── PropertyAmenities.js │ │ │ │ ├── UploadImage.js │ │ │ │ ├── UploadVideo.js │ │ │ │ └── __snapshots__ │ │ │ │ ├── AddressPicker.js.snap │ │ │ │ ├── Footer.js.snap │ │ │ │ ├── Header.js.snap │ │ │ │ ├── List.js.snap │ │ │ │ ├── NavBack.js.snap │ │ │ │ ├── PropertyAmenities.js.snap │ │ │ │ ├── UploadImage.js.snap │ │ │ │ └── UploadVideo.js.snap │ │ └── filters │ │ │ ├── Button.js │ │ │ ├── CountryFlagIcon.js │ │ │ ├── CountryPicker.js │ │ │ ├── List.js │ │ │ └── __tests__ │ │ │ ├── Button.js │ │ │ ├── FilterScene.js │ │ │ ├── List.js │ │ │ └── __snapshots__ │ │ │ ├── Button.js.snap │ │ │ ├── FilterScene.js.snap │ │ │ └── List.js.snap │ └── scenes │ │ ├── HistoryList.js │ │ ├── LocationSearchScene.js │ │ ├── PropertyDetailScene.js │ │ ├── PropertyEditScene.js │ │ ├── PropertyFilterScene.js │ │ ├── PropertyHomeScene.js │ │ ├── PropertyListScene.js │ │ ├── PropertyManagerScene.js │ │ ├── PropertyMapScene.js │ │ └── __tests__ │ │ ├── LocationSearchScene.js │ │ ├── PropertyDetailScene.js │ │ ├── PropertyListScene.js │ │ ├── PropertyMapScene.js │ │ └── __snapshots__ │ │ ├── LocationSearchScene.js.snap │ │ ├── PropertyDetailScene.js.snap │ │ ├── PropertyListScene.js.snap │ │ └── PropertyMapScene.js.snap └── user │ ├── CountryList.js │ ├── Profile.js │ ├── Settings.js │ ├── UserDetail.js │ ├── UserEdit.js │ ├── common │ ├── actions.js │ ├── api.js │ ├── model.js │ ├── reducer.js │ ├── sagas.js │ └── selectors.js │ ├── components │ ├── SettingListItem.js │ ├── __tests__ │ │ ├── SettingListItem.js │ │ └── __snapshots__ │ │ │ └── SettingListItem.js.snap │ └── profile │ │ ├── Contact.js │ │ ├── EditProfile.js │ │ ├── UserInfo.js │ │ ├── UserLogo.js │ │ └── __tests__ │ │ ├── Contact.js │ │ ├── EditProfile.js │ │ ├── UserInfo.js │ │ ├── UserLogo.js │ │ └── __snapshots__ │ │ ├── Contact.js.snap │ │ ├── EditProfile.js.snap │ │ ├── UserInfo.js.snap │ │ └── UserLogo.js.snap │ └── scenes │ ├── CountryListScene.js │ ├── ProfileScene.js │ ├── SettingsScene.js │ ├── UserDetailScene.js │ ├── UserEditScene.js │ └── __tests__ │ ├── CountryListScene.js │ ├── ProfileScene.js │ ├── SettingsScene.js │ ├── UserDetailScene.js │ ├── UserEditScene.js │ └── __snapshots__ │ ├── CountryListScene.js.snap │ ├── ProfileScene.js.snap │ ├── SettingsScene.js.snap │ ├── UserDetailScene.js.snap │ └── UserEditScene.js.snap └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | ./node_modules 2 | __tests__ 3 | ios 4 | android 5 | assets -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/README.md -------------------------------------------------------------------------------- /README_files/SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/README_files/SS.png -------------------------------------------------------------------------------- /README_files/Video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/README_files/Video.png -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/property/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/java/com/property/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/property/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/java/com/property/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/country-bg/AE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-bg/AE.jpg -------------------------------------------------------------------------------- /assets/country-bg/BH.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-bg/BH.jpg -------------------------------------------------------------------------------- /assets/country-bg/KW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-bg/KW.jpg -------------------------------------------------------------------------------- /assets/country-bg/OM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-bg/OM.jpg -------------------------------------------------------------------------------- /assets/country-bg/QA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-bg/QA.jpg -------------------------------------------------------------------------------- /assets/country-bg/SA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-bg/SA.jpg -------------------------------------------------------------------------------- /assets/country-flags/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/AE.png -------------------------------------------------------------------------------- /assets/country-flags/AE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/AE@2x.png -------------------------------------------------------------------------------- /assets/country-flags/AE@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/AE@3x.png -------------------------------------------------------------------------------- /assets/country-flags/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/BH.png -------------------------------------------------------------------------------- /assets/country-flags/BH@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/BH@2x.png -------------------------------------------------------------------------------- /assets/country-flags/BH@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/BH@3x.png -------------------------------------------------------------------------------- /assets/country-flags/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/KW.png -------------------------------------------------------------------------------- /assets/country-flags/KW@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/KW@2x.png -------------------------------------------------------------------------------- /assets/country-flags/KW@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/KW@3x.png -------------------------------------------------------------------------------- /assets/country-flags/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/OM.png -------------------------------------------------------------------------------- /assets/country-flags/OM@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/OM@2x.png -------------------------------------------------------------------------------- /assets/country-flags/OM@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/OM@3x.png -------------------------------------------------------------------------------- /assets/country-flags/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/QA.png -------------------------------------------------------------------------------- /assets/country-flags/QA@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/QA@2x.png -------------------------------------------------------------------------------- /assets/country-flags/QA@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/QA@3x.png -------------------------------------------------------------------------------- /assets/country-flags/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/SA.png -------------------------------------------------------------------------------- /assets/country-flags/SA@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/SA@2x.png -------------------------------------------------------------------------------- /assets/country-flags/SA@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/country-flags/SA@3x.png -------------------------------------------------------------------------------- /assets/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/empty.png -------------------------------------------------------------------------------- /assets/fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/fireworks.png -------------------------------------------------------------------------------- /assets/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/login-bg.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/navbar.png -------------------------------------------------------------------------------- /assets/splash/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/splash/screen1.png -------------------------------------------------------------------------------- /assets/splash/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/splash/screen2.png -------------------------------------------------------------------------------- /assets/splash/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/splash/screen3.png -------------------------------------------------------------------------------- /assets/splash/screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/splash/screen4.png -------------------------------------------------------------------------------- /assets/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/assets/startup.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /ios/Splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/Splash@2x.png -------------------------------------------------------------------------------- /ios/YTPlayerView-iframe-player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/YTPlayerView-iframe-player.html -------------------------------------------------------------------------------- /ios/property-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/property-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/property.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/property.xcodeproj/xcshareddata/xcschemes/property-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property.xcodeproj/xcshareddata/xcschemes/property-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/property.xcodeproj/xcshareddata/xcschemes/property.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property.xcodeproj/xcshareddata/xcschemes/property.xcscheme -------------------------------------------------------------------------------- /ios/property/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property/AppDelegate.h -------------------------------------------------------------------------------- /ios/property/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property/AppDelegate.m -------------------------------------------------------------------------------- /ios/property/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/property/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/property/Images.xcassets/AppIcon.appiconset/key home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property/Images.xcassets/AppIcon.appiconset/key home@2x.png -------------------------------------------------------------------------------- /ios/property/Images.xcassets/AppIcon.appiconset/key home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property/Images.xcassets/AppIcon.appiconset/key home@3x.png -------------------------------------------------------------------------------- /ios/property/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property/Info.plist -------------------------------------------------------------------------------- /ios/property/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/property/main.m -------------------------------------------------------------------------------- /ios/propertyTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/propertyTests/Info.plist -------------------------------------------------------------------------------- /ios/propertyTests/propertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/ios/propertyTests/propertyTests.m -------------------------------------------------------------------------------- /jest/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/jest/setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/package.json -------------------------------------------------------------------------------- /src/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/Root.js -------------------------------------------------------------------------------- /src/__tests/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/__tests/Root.js -------------------------------------------------------------------------------- /src/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/App.js -------------------------------------------------------------------------------- /src/app/AppNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/AppNotification.js -------------------------------------------------------------------------------- /src/app/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/Splash.js -------------------------------------------------------------------------------- /src/app/common/__tests__/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/common/__tests__/actions.js -------------------------------------------------------------------------------- /src/app/common/__tests__/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/common/__tests__/reducer.js -------------------------------------------------------------------------------- /src/app/common/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/common/actions.js -------------------------------------------------------------------------------- /src/app/common/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/common/reducer.js -------------------------------------------------------------------------------- /src/app/common/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/common/sagas.js -------------------------------------------------------------------------------- /src/app/common/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/common/selectors.js -------------------------------------------------------------------------------- /src/app/components/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/components/Notification.js -------------------------------------------------------------------------------- /src/app/components/SplashScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/components/SplashScene.js -------------------------------------------------------------------------------- /src/app/components/__tests__/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/components/__tests__/Notification.js -------------------------------------------------------------------------------- /src/app/components/__tests__/__snapshots__/Notification.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/app/components/__tests__/__snapshots__/Notification.js.snap -------------------------------------------------------------------------------- /src/auth/Forgot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/Forgot.js -------------------------------------------------------------------------------- /src/auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/Login.js -------------------------------------------------------------------------------- /src/auth/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/Register.js -------------------------------------------------------------------------------- /src/auth/common/__test__/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/common/__test__/actions.js -------------------------------------------------------------------------------- /src/auth/common/__test__/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/common/__test__/reducer.js -------------------------------------------------------------------------------- /src/auth/common/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/common/actions.js -------------------------------------------------------------------------------- /src/auth/common/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/common/api.js -------------------------------------------------------------------------------- /src/auth/common/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/common/reducer.js -------------------------------------------------------------------------------- /src/auth/common/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/common/sagas.js -------------------------------------------------------------------------------- /src/auth/common/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/common/selectors.js -------------------------------------------------------------------------------- /src/auth/scenes/ConfirmScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/scenes/ConfirmScene.js -------------------------------------------------------------------------------- /src/auth/scenes/ForgotScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/scenes/ForgotScene.js -------------------------------------------------------------------------------- /src/auth/scenes/LoginScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/scenes/LoginScene.js -------------------------------------------------------------------------------- /src/auth/scenes/PasswordUpdateScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/scenes/PasswordUpdateScene.js -------------------------------------------------------------------------------- /src/auth/scenes/RegisterScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/scenes/RegisterScene.js -------------------------------------------------------------------------------- /src/auth/scenes/__tests__/LoginScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/scenes/__tests__/LoginScene.js -------------------------------------------------------------------------------- /src/auth/scenes/__tests__/RegisterScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/scenes/__tests__/RegisterScene.js -------------------------------------------------------------------------------- /src/auth/scenes/__tests__/__snapshots__/LoginScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/scenes/__tests__/__snapshots__/LoginScene.js.snap -------------------------------------------------------------------------------- /src/auth/scenes/__tests__/__snapshots__/RegisterScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/auth/scenes/__tests__/__snapshots__/RegisterScene.js.snap -------------------------------------------------------------------------------- /src/common/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/api.js -------------------------------------------------------------------------------- /src/common/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/colors.js -------------------------------------------------------------------------------- /src/common/countryBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/countryBackground.js -------------------------------------------------------------------------------- /src/common/flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/flag.js -------------------------------------------------------------------------------- /src/common/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/functions.js -------------------------------------------------------------------------------- /src/common/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/navigator.js -------------------------------------------------------------------------------- /src/common/orm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/orm.js -------------------------------------------------------------------------------- /src/common/ormReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/ormReducer.js -------------------------------------------------------------------------------- /src/common/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/reducers.js -------------------------------------------------------------------------------- /src/common/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/sagas.js -------------------------------------------------------------------------------- /src/common/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/storage.js -------------------------------------------------------------------------------- /src/common/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/common/store.js -------------------------------------------------------------------------------- /src/components/LoadingIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/LoadingIndicator.js -------------------------------------------------------------------------------- /src/components/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/NavBar.js -------------------------------------------------------------------------------- /src/components/NavButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/NavButton.js -------------------------------------------------------------------------------- /src/components/NavigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/NavigationService.js -------------------------------------------------------------------------------- /src/components/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/Separator.js -------------------------------------------------------------------------------- /src/components/VideoPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/VideoPlayer.js -------------------------------------------------------------------------------- /src/components/YoutubePlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/YoutubePlayer.js -------------------------------------------------------------------------------- /src/components/__tests__/LoadingIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/__tests__/LoadingIndicator.js -------------------------------------------------------------------------------- /src/components/__tests__/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/__tests__/NavBar.js -------------------------------------------------------------------------------- /src/components/__tests__/NavButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/__tests__/NavButton.js -------------------------------------------------------------------------------- /src/components/__tests__/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/__tests__/Separator.js -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/LoadingIndicator.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/__tests__/__snapshots__/LoadingIndicator.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/NavBar.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/__tests__/__snapshots__/NavBar.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/NavButton.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/__tests__/__snapshots__/NavButton.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/Separator.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/components/__tests__/__snapshots__/Separator.js.snap -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/env.js -------------------------------------------------------------------------------- /src/property/PropertyCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/PropertyCreate.js -------------------------------------------------------------------------------- /src/property/PropertyDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/PropertyDetail.js -------------------------------------------------------------------------------- /src/property/PropertyEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/PropertyEdit.js -------------------------------------------------------------------------------- /src/property/PropertyFavorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/PropertyFavorites.js -------------------------------------------------------------------------------- /src/property/PropertyFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/PropertyFilter.js -------------------------------------------------------------------------------- /src/property/PropertyHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/PropertyHome.js -------------------------------------------------------------------------------- /src/property/PropertyList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/PropertyList.js -------------------------------------------------------------------------------- /src/property/PropertyLocationPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/PropertyLocationPicker.js -------------------------------------------------------------------------------- /src/property/PropertyManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/PropertyManager.js -------------------------------------------------------------------------------- /src/property/common/__tests__/__snapshots__/actions.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/__tests__/__snapshots__/actions.js.snap -------------------------------------------------------------------------------- /src/property/common/__tests__/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/__tests__/actions.js -------------------------------------------------------------------------------- /src/property/common/__tests__/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/__tests__/reducer.js -------------------------------------------------------------------------------- /src/property/common/__tests__/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/__tests__/selectors.js -------------------------------------------------------------------------------- /src/property/common/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/actions.js -------------------------------------------------------------------------------- /src/property/common/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/api.js -------------------------------------------------------------------------------- /src/property/common/attributes.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/property/common/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/model.js -------------------------------------------------------------------------------- /src/property/common/proptypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/proptypes.js -------------------------------------------------------------------------------- /src/property/common/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/reducer.js -------------------------------------------------------------------------------- /src/property/common/reducerHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/reducerHelper.js -------------------------------------------------------------------------------- /src/property/common/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/sagas.js -------------------------------------------------------------------------------- /src/property/common/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/common/selectors.js -------------------------------------------------------------------------------- /src/property/components/EmptyResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/EmptyResult.js -------------------------------------------------------------------------------- /src/property/components/Favorite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/Favorite.js -------------------------------------------------------------------------------- /src/property/components/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/Gallery.js -------------------------------------------------------------------------------- /src/property/components/PropertyIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/PropertyIcons.js -------------------------------------------------------------------------------- /src/property/components/PropertyMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/PropertyMap.js -------------------------------------------------------------------------------- /src/property/components/PropertyRelatedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/PropertyRelatedList.js -------------------------------------------------------------------------------- /src/property/components/PropertyTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/PropertyTags.js -------------------------------------------------------------------------------- /src/property/components/ResultHint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/ResultHint.js -------------------------------------------------------------------------------- /src/property/components/__tests__/Favorite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/__tests__/Favorite.js -------------------------------------------------------------------------------- /src/property/components/__tests__/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/__tests__/Gallery.js -------------------------------------------------------------------------------- /src/property/components/__tests__/PropertyIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/__tests__/PropertyIcons.js -------------------------------------------------------------------------------- /src/property/components/__tests__/PropertyTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/__tests__/PropertyTags.js -------------------------------------------------------------------------------- /src/property/components/__tests__/__snapshots__/Favorite.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/__tests__/__snapshots__/Favorite.js.snap -------------------------------------------------------------------------------- /src/property/components/__tests__/__snapshots__/Gallery.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/__tests__/__snapshots__/Gallery.js.snap -------------------------------------------------------------------------------- /src/property/components/__tests__/__snapshots__/PropertyIcons.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/__tests__/__snapshots__/PropertyIcons.js.snap -------------------------------------------------------------------------------- /src/property/components/__tests__/__snapshots__/PropertyTags.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/__tests__/__snapshots__/PropertyTags.js.snap -------------------------------------------------------------------------------- /src/property/components/create/AddressPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/AddressPicker.js -------------------------------------------------------------------------------- /src/property/components/create/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/Footer.js -------------------------------------------------------------------------------- /src/property/components/create/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/Header.js -------------------------------------------------------------------------------- /src/property/components/create/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/List.js -------------------------------------------------------------------------------- /src/property/components/create/NavBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/NavBack.js -------------------------------------------------------------------------------- /src/property/components/create/PriceMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/PriceMarker.js -------------------------------------------------------------------------------- /src/property/components/create/PropertyAmenities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/PropertyAmenities.js -------------------------------------------------------------------------------- /src/property/components/create/PropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/PropertyInfo.js -------------------------------------------------------------------------------- /src/property/components/create/PropertyMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/PropertyMeta.js -------------------------------------------------------------------------------- /src/property/components/create/UploadImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/UploadImage.js -------------------------------------------------------------------------------- /src/property/components/create/UploadVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/UploadVideo.js -------------------------------------------------------------------------------- /src/property/components/create/__tests__/AddressPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/AddressPicker.js -------------------------------------------------------------------------------- /src/property/components/create/__tests__/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/Footer.js -------------------------------------------------------------------------------- /src/property/components/create/__tests__/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/Header.js -------------------------------------------------------------------------------- /src/property/components/create/__tests__/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/List.js -------------------------------------------------------------------------------- /src/property/components/create/__tests__/NavBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/NavBack.js -------------------------------------------------------------------------------- /src/property/components/create/__tests__/PropertyAmenities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/PropertyAmenities.js -------------------------------------------------------------------------------- /src/property/components/create/__tests__/UploadImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/UploadImage.js -------------------------------------------------------------------------------- /src/property/components/create/__tests__/UploadVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/UploadVideo.js -------------------------------------------------------------------------------- /src/property/components/create/__tests__/__snapshots__/AddressPicker.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/__snapshots__/AddressPicker.js.snap -------------------------------------------------------------------------------- /src/property/components/create/__tests__/__snapshots__/Footer.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/__snapshots__/Footer.js.snap -------------------------------------------------------------------------------- /src/property/components/create/__tests__/__snapshots__/Header.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/__snapshots__/Header.js.snap -------------------------------------------------------------------------------- /src/property/components/create/__tests__/__snapshots__/List.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/__snapshots__/List.js.snap -------------------------------------------------------------------------------- /src/property/components/create/__tests__/__snapshots__/NavBack.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/__snapshots__/NavBack.js.snap -------------------------------------------------------------------------------- /src/property/components/create/__tests__/__snapshots__/PropertyAmenities.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/__snapshots__/PropertyAmenities.js.snap -------------------------------------------------------------------------------- /src/property/components/create/__tests__/__snapshots__/UploadImage.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/__snapshots__/UploadImage.js.snap -------------------------------------------------------------------------------- /src/property/components/create/__tests__/__snapshots__/UploadVideo.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/create/__tests__/__snapshots__/UploadVideo.js.snap -------------------------------------------------------------------------------- /src/property/components/filters/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/Button.js -------------------------------------------------------------------------------- /src/property/components/filters/CountryFlagIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/CountryFlagIcon.js -------------------------------------------------------------------------------- /src/property/components/filters/CountryPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/CountryPicker.js -------------------------------------------------------------------------------- /src/property/components/filters/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/List.js -------------------------------------------------------------------------------- /src/property/components/filters/__tests__/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/__tests__/Button.js -------------------------------------------------------------------------------- /src/property/components/filters/__tests__/FilterScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/__tests__/FilterScene.js -------------------------------------------------------------------------------- /src/property/components/filters/__tests__/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/__tests__/List.js -------------------------------------------------------------------------------- /src/property/components/filters/__tests__/__snapshots__/Button.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/__tests__/__snapshots__/Button.js.snap -------------------------------------------------------------------------------- /src/property/components/filters/__tests__/__snapshots__/FilterScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/__tests__/__snapshots__/FilterScene.js.snap -------------------------------------------------------------------------------- /src/property/components/filters/__tests__/__snapshots__/List.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/components/filters/__tests__/__snapshots__/List.js.snap -------------------------------------------------------------------------------- /src/property/scenes/HistoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/HistoryList.js -------------------------------------------------------------------------------- /src/property/scenes/LocationSearchScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/LocationSearchScene.js -------------------------------------------------------------------------------- /src/property/scenes/PropertyDetailScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/PropertyDetailScene.js -------------------------------------------------------------------------------- /src/property/scenes/PropertyEditScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/PropertyEditScene.js -------------------------------------------------------------------------------- /src/property/scenes/PropertyFilterScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/PropertyFilterScene.js -------------------------------------------------------------------------------- /src/property/scenes/PropertyHomeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/PropertyHomeScene.js -------------------------------------------------------------------------------- /src/property/scenes/PropertyListScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/PropertyListScene.js -------------------------------------------------------------------------------- /src/property/scenes/PropertyManagerScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/PropertyManagerScene.js -------------------------------------------------------------------------------- /src/property/scenes/PropertyMapScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/PropertyMapScene.js -------------------------------------------------------------------------------- /src/property/scenes/__tests__/LocationSearchScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/__tests__/LocationSearchScene.js -------------------------------------------------------------------------------- /src/property/scenes/__tests__/PropertyDetailScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/__tests__/PropertyDetailScene.js -------------------------------------------------------------------------------- /src/property/scenes/__tests__/PropertyListScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/__tests__/PropertyListScene.js -------------------------------------------------------------------------------- /src/property/scenes/__tests__/PropertyMapScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/__tests__/PropertyMapScene.js -------------------------------------------------------------------------------- /src/property/scenes/__tests__/__snapshots__/LocationSearchScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/__tests__/__snapshots__/LocationSearchScene.js.snap -------------------------------------------------------------------------------- /src/property/scenes/__tests__/__snapshots__/PropertyDetailScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/__tests__/__snapshots__/PropertyDetailScene.js.snap -------------------------------------------------------------------------------- /src/property/scenes/__tests__/__snapshots__/PropertyListScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/__tests__/__snapshots__/PropertyListScene.js.snap -------------------------------------------------------------------------------- /src/property/scenes/__tests__/__snapshots__/PropertyMapScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/property/scenes/__tests__/__snapshots__/PropertyMapScene.js.snap -------------------------------------------------------------------------------- /src/user/CountryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/CountryList.js -------------------------------------------------------------------------------- /src/user/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/Profile.js -------------------------------------------------------------------------------- /src/user/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/Settings.js -------------------------------------------------------------------------------- /src/user/UserDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/UserDetail.js -------------------------------------------------------------------------------- /src/user/UserEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/UserEdit.js -------------------------------------------------------------------------------- /src/user/common/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/common/actions.js -------------------------------------------------------------------------------- /src/user/common/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/common/api.js -------------------------------------------------------------------------------- /src/user/common/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/common/model.js -------------------------------------------------------------------------------- /src/user/common/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/common/reducer.js -------------------------------------------------------------------------------- /src/user/common/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/common/sagas.js -------------------------------------------------------------------------------- /src/user/common/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/common/selectors.js -------------------------------------------------------------------------------- /src/user/components/SettingListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/SettingListItem.js -------------------------------------------------------------------------------- /src/user/components/__tests__/SettingListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/__tests__/SettingListItem.js -------------------------------------------------------------------------------- /src/user/components/__tests__/__snapshots__/SettingListItem.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/__tests__/__snapshots__/SettingListItem.js.snap -------------------------------------------------------------------------------- /src/user/components/profile/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/Contact.js -------------------------------------------------------------------------------- /src/user/components/profile/EditProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/EditProfile.js -------------------------------------------------------------------------------- /src/user/components/profile/UserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/UserInfo.js -------------------------------------------------------------------------------- /src/user/components/profile/UserLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/UserLogo.js -------------------------------------------------------------------------------- /src/user/components/profile/__tests__/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/__tests__/Contact.js -------------------------------------------------------------------------------- /src/user/components/profile/__tests__/EditProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/__tests__/EditProfile.js -------------------------------------------------------------------------------- /src/user/components/profile/__tests__/UserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/__tests__/UserInfo.js -------------------------------------------------------------------------------- /src/user/components/profile/__tests__/UserLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/__tests__/UserLogo.js -------------------------------------------------------------------------------- /src/user/components/profile/__tests__/__snapshots__/Contact.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/__tests__/__snapshots__/Contact.js.snap -------------------------------------------------------------------------------- /src/user/components/profile/__tests__/__snapshots__/EditProfile.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/__tests__/__snapshots__/EditProfile.js.snap -------------------------------------------------------------------------------- /src/user/components/profile/__tests__/__snapshots__/UserInfo.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/__tests__/__snapshots__/UserInfo.js.snap -------------------------------------------------------------------------------- /src/user/components/profile/__tests__/__snapshots__/UserLogo.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/components/profile/__tests__/__snapshots__/UserLogo.js.snap -------------------------------------------------------------------------------- /src/user/scenes/CountryListScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/CountryListScene.js -------------------------------------------------------------------------------- /src/user/scenes/ProfileScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/ProfileScene.js -------------------------------------------------------------------------------- /src/user/scenes/SettingsScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/SettingsScene.js -------------------------------------------------------------------------------- /src/user/scenes/UserDetailScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/UserDetailScene.js -------------------------------------------------------------------------------- /src/user/scenes/UserEditScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/UserEditScene.js -------------------------------------------------------------------------------- /src/user/scenes/__tests__/CountryListScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/CountryListScene.js -------------------------------------------------------------------------------- /src/user/scenes/__tests__/ProfileScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/ProfileScene.js -------------------------------------------------------------------------------- /src/user/scenes/__tests__/SettingsScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/SettingsScene.js -------------------------------------------------------------------------------- /src/user/scenes/__tests__/UserDetailScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/UserDetailScene.js -------------------------------------------------------------------------------- /src/user/scenes/__tests__/UserEditScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/UserEditScene.js -------------------------------------------------------------------------------- /src/user/scenes/__tests__/__snapshots__/CountryListScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/__snapshots__/CountryListScene.js.snap -------------------------------------------------------------------------------- /src/user/scenes/__tests__/__snapshots__/ProfileScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/__snapshots__/ProfileScene.js.snap -------------------------------------------------------------------------------- /src/user/scenes/__tests__/__snapshots__/SettingsScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/__snapshots__/SettingsScene.js.snap -------------------------------------------------------------------------------- /src/user/scenes/__tests__/__snapshots__/UserDetailScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/__snapshots__/UserDetailScene.js.snap -------------------------------------------------------------------------------- /src/user/scenes/__tests__/__snapshots__/UserEditScene.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/src/user/scenes/__tests__/__snapshots__/UserEditScene.js.snap -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iZaL/real-estate-app-ui/HEAD/yarn.lock --------------------------------------------------------------------------------