├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE.md ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── otel │ │ │ ├── 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 ├── app.json ├── app ├── assets │ ├── icons.sketch │ └── otel-logo.png ├── components │ ├── AmenitiesPanel │ │ └── index.js │ ├── CityItem │ │ ├── index.js │ │ └── style.js │ ├── ContactPanel │ │ └── index.js │ ├── Error │ │ └── index.js │ ├── ErrorDetail │ │ └── index.js │ ├── HeaderLogo │ │ └── index.js │ ├── HotelItem │ │ ├── index.js │ │ └── style.js │ ├── Loading │ │ └── index.js │ ├── LoadingDetail │ │ ├── index.js │ │ └── style.js │ ├── NoResults │ │ ├── index.js │ │ └── style.js │ ├── ProfileButton │ │ └── index.js │ ├── SearchButton │ │ └── index.js │ ├── ShareButton │ │ └── index.js │ └── index.js ├── config │ ├── constants.js │ └── navigation.js ├── index.js ├── reducers │ ├── CitiesReducer │ │ ├── actions.js │ │ ├── index.js │ │ └── keys.js │ ├── DetailReducer │ │ ├── actions.js │ │ ├── index.js │ │ └── keys.js │ ├── HotelsReducer │ │ ├── actions.js │ │ ├── index.js │ │ └── keys.js │ └── index.js ├── screens │ ├── DetailScreen │ │ ├── DetailContainer.js │ │ ├── DetailView.js │ │ ├── index.js │ │ └── style.js │ ├── HomeScreen │ │ ├── HomeContainer.js │ │ ├── HomeView.js │ │ └── index.js │ ├── HotelsScreen │ │ ├── HotelsContainer.js │ │ ├── HotelsView.js │ │ └── index.js │ ├── ProfileScreen │ │ ├── index.js │ │ └── style.js │ └── index.js └── services │ ├── cities.js │ └── hotels.js ├── index.js ├── ios ├── otel-tvOS │ └── Info.plist ├── otel-tvOSTests │ └── Info.plist ├── otel.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── otel-tvOS.xcscheme │ │ └── otel.xcscheme ├── otel │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── icon_20pt@2x.png │ │ │ ├── icon_20pt@3x.png │ │ │ ├── icon_29pt@2x.png │ │ │ ├── icon_29pt@3x.png │ │ │ ├── icon_40pt@2x.png │ │ │ ├── icon_40pt@3x.png │ │ │ ├── icon_60pt@2x.png │ │ │ └── icon_60pt@3x.png │ │ ├── Contents.json │ │ └── SplashIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── otel.png │ │ │ ├── otel@2x.png │ │ │ └── otel@3x.png │ ├── Info.plist │ └── main.m └── otelTests │ ├── Info.plist │ └── otelTests.m ├── package.json ├── screenshots ├── screenshot-1.png ├── screenshot-10.png ├── screenshot-11.png ├── screenshot-12.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── screenshot-6.png ├── screenshot-7.png ├── screenshot-8.png ├── screenshot-9.png └── xcode.png └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/otel/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/app/src/main/java/com/otel/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/otel/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/app/src/main/java/com/otel/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/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/lexmartinez/react-native-hotels-app/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/lexmartinez/react-native-hotels-app/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/lexmartinez/react-native-hotels-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'otel' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/icons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/assets/icons.sketch -------------------------------------------------------------------------------- /app/assets/otel-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/assets/otel-logo.png -------------------------------------------------------------------------------- /app/components/AmenitiesPanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/AmenitiesPanel/index.js -------------------------------------------------------------------------------- /app/components/CityItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/CityItem/index.js -------------------------------------------------------------------------------- /app/components/CityItem/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/CityItem/style.js -------------------------------------------------------------------------------- /app/components/ContactPanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/ContactPanel/index.js -------------------------------------------------------------------------------- /app/components/Error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/Error/index.js -------------------------------------------------------------------------------- /app/components/ErrorDetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/ErrorDetail/index.js -------------------------------------------------------------------------------- /app/components/HeaderLogo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/HeaderLogo/index.js -------------------------------------------------------------------------------- /app/components/HotelItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/HotelItem/index.js -------------------------------------------------------------------------------- /app/components/HotelItem/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/HotelItem/style.js -------------------------------------------------------------------------------- /app/components/Loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/Loading/index.js -------------------------------------------------------------------------------- /app/components/LoadingDetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/LoadingDetail/index.js -------------------------------------------------------------------------------- /app/components/LoadingDetail/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/LoadingDetail/style.js -------------------------------------------------------------------------------- /app/components/NoResults/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/NoResults/index.js -------------------------------------------------------------------------------- /app/components/NoResults/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/NoResults/style.js -------------------------------------------------------------------------------- /app/components/ProfileButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/ProfileButton/index.js -------------------------------------------------------------------------------- /app/components/SearchButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/SearchButton/index.js -------------------------------------------------------------------------------- /app/components/ShareButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/ShareButton/index.js -------------------------------------------------------------------------------- /app/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/components/index.js -------------------------------------------------------------------------------- /app/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/config/constants.js -------------------------------------------------------------------------------- /app/config/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/config/navigation.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/index.js -------------------------------------------------------------------------------- /app/reducers/CitiesReducer/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/CitiesReducer/actions.js -------------------------------------------------------------------------------- /app/reducers/CitiesReducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/CitiesReducer/index.js -------------------------------------------------------------------------------- /app/reducers/CitiesReducer/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/CitiesReducer/keys.js -------------------------------------------------------------------------------- /app/reducers/DetailReducer/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/DetailReducer/actions.js -------------------------------------------------------------------------------- /app/reducers/DetailReducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/DetailReducer/index.js -------------------------------------------------------------------------------- /app/reducers/DetailReducer/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/DetailReducer/keys.js -------------------------------------------------------------------------------- /app/reducers/HotelsReducer/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/HotelsReducer/actions.js -------------------------------------------------------------------------------- /app/reducers/HotelsReducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/HotelsReducer/index.js -------------------------------------------------------------------------------- /app/reducers/HotelsReducer/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/HotelsReducer/keys.js -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/screens/DetailScreen/DetailContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/DetailScreen/DetailContainer.js -------------------------------------------------------------------------------- /app/screens/DetailScreen/DetailView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/DetailScreen/DetailView.js -------------------------------------------------------------------------------- /app/screens/DetailScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/DetailScreen/index.js -------------------------------------------------------------------------------- /app/screens/DetailScreen/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/DetailScreen/style.js -------------------------------------------------------------------------------- /app/screens/HomeScreen/HomeContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/HomeScreen/HomeContainer.js -------------------------------------------------------------------------------- /app/screens/HomeScreen/HomeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/HomeScreen/HomeView.js -------------------------------------------------------------------------------- /app/screens/HomeScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/HomeScreen/index.js -------------------------------------------------------------------------------- /app/screens/HotelsScreen/HotelsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/HotelsScreen/HotelsContainer.js -------------------------------------------------------------------------------- /app/screens/HotelsScreen/HotelsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/HotelsScreen/HotelsView.js -------------------------------------------------------------------------------- /app/screens/HotelsScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/HotelsScreen/index.js -------------------------------------------------------------------------------- /app/screens/ProfileScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/ProfileScreen/index.js -------------------------------------------------------------------------------- /app/screens/ProfileScreen/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/ProfileScreen/style.js -------------------------------------------------------------------------------- /app/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/screens/index.js -------------------------------------------------------------------------------- /app/services/cities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/services/cities.js -------------------------------------------------------------------------------- /app/services/hotels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/app/services/hotels.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/index.js -------------------------------------------------------------------------------- /ios/otel-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/otel-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/otel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/otel.xcodeproj/xcshareddata/xcschemes/otel-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel.xcodeproj/xcshareddata/xcschemes/otel-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/otel.xcodeproj/xcshareddata/xcschemes/otel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel.xcodeproj/xcshareddata/xcschemes/otel.xcscheme -------------------------------------------------------------------------------- /ios/otel/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/AppDelegate.h -------------------------------------------------------------------------------- /ios/otel/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/AppDelegate.m -------------------------------------------------------------------------------- /ios/otel/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/icon_20pt@2x.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/icon_20pt@3x.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/icon_29pt@2x.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/icon_29pt@3x.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/icon_40pt@2x.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/icon_40pt@3x.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/icon_60pt@2x.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/AppIcon.appiconset/icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/AppIcon.appiconset/icon_60pt@3x.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/SplashIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/SplashIcon.imageset/Contents.json -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/SplashIcon.imageset/otel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/SplashIcon.imageset/otel.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/SplashIcon.imageset/otel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/SplashIcon.imageset/otel@2x.png -------------------------------------------------------------------------------- /ios/otel/Images.xcassets/SplashIcon.imageset/otel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Images.xcassets/SplashIcon.imageset/otel@3x.png -------------------------------------------------------------------------------- /ios/otel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/Info.plist -------------------------------------------------------------------------------- /ios/otel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otel/main.m -------------------------------------------------------------------------------- /ios/otelTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otelTests/Info.plist -------------------------------------------------------------------------------- /ios/otelTests/otelTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/ios/otelTests/otelTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-10.png -------------------------------------------------------------------------------- /screenshots/screenshot-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-11.png -------------------------------------------------------------------------------- /screenshots/screenshot-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-12.png -------------------------------------------------------------------------------- /screenshots/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-2.png -------------------------------------------------------------------------------- /screenshots/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-3.png -------------------------------------------------------------------------------- /screenshots/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-4.png -------------------------------------------------------------------------------- /screenshots/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-5.png -------------------------------------------------------------------------------- /screenshots/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-6.png -------------------------------------------------------------------------------- /screenshots/screenshot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-7.png -------------------------------------------------------------------------------- /screenshots/screenshot-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-8.png -------------------------------------------------------------------------------- /screenshots/screenshot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/screenshot-9.png -------------------------------------------------------------------------------- /screenshots/xcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/screenshots/xcode.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexmartinez/react-native-hotels-app/HEAD/yarn.lock --------------------------------------------------------------------------------