├── .babelrc ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── README_ES.md ├── __tests__ ├── actions │ ├── cityList.spec.js │ ├── navigation.spec.js │ └── requests.spec.js ├── components │ ├── __snapshots__ │ │ ├── cityDetails.spec.js.snap │ │ ├── cityElement.spec.js.snap │ │ ├── cloudPictogram.spec.js.snap │ │ └── logoClouds.spec.js.snap │ ├── cityDetails.spec.js │ ├── cityElement.spec.js │ ├── cloudPictogram.spec.js │ ├── logoClouds.spec.js │ └── searchScene.spec.js ├── factories │ └── index.js ├── mockups │ ├── checkCityWeather.json │ ├── fillAutoComplete.json │ └── oneCity.json ├── models │ ├── city.spec.js │ └── weatherInfo.spec.js ├── reducers │ ├── navReducer.spec.js │ └── root-reducer.spec.js ├── selectors │ ├── citySelector.spec.js │ └── currentCitySelector.spec.js └── utils │ └── index.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Nunito-Bold.ttf │ │ │ ├── Nunito-Light.ttf │ │ │ └── Nunito-Regular.ttf │ │ ├── java │ │ └── com │ │ │ └── keradweather │ │ │ ├── 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 ├── index.android.js ├── index.ios.js ├── ios ├── KeradWeather.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── KeradWeather.xcscheme ├── KeradWeather │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── KeradWeatherTests │ ├── Info.plist │ └── KeradWeatherTests.m ├── main.jsbundle └── main.jsbundle.meta ├── package.json └── src ├── actions ├── cityList.js ├── navigation.js └── requests.js ├── assets ├── fonts │ ├── Nunito-Bold.ttf │ ├── Nunito-Light.ttf │ └── Nunito-Regular.ttf └── img │ ├── Cloud4.png │ ├── moon.png │ ├── raindrops.png │ ├── snowflake.png │ └── sun.png ├── components ├── cityDetails.js ├── cityElement.js ├── cloudPictogram.js ├── logoClouds.js ├── mainScene.js └── searchScene.js ├── constants └── ActionTypes.js ├── containers ├── cityDetailsContainer.js ├── mainSceneContainer.js ├── root.js └── searchSceneContainer.js ├── models ├── city.js ├── index.js └── weatherInfo.js ├── reducers ├── navReducer.js └── root-reducer.js ├── selectors ├── citySelector.js └── currentCitySelector.js ├── store └── store-configuration.js └── styles ├── cloudPictogram.js ├── index.js ├── logoClouds.js └── searchScene.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/README.md -------------------------------------------------------------------------------- /README_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/README_ES.md -------------------------------------------------------------------------------- /__tests__/actions/cityList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/actions/cityList.spec.js -------------------------------------------------------------------------------- /__tests__/actions/navigation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/actions/navigation.spec.js -------------------------------------------------------------------------------- /__tests__/actions/requests.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/actions/requests.spec.js -------------------------------------------------------------------------------- /__tests__/components/__snapshots__/cityDetails.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/components/__snapshots__/cityDetails.spec.js.snap -------------------------------------------------------------------------------- /__tests__/components/__snapshots__/cityElement.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/components/__snapshots__/cityElement.spec.js.snap -------------------------------------------------------------------------------- /__tests__/components/__snapshots__/cloudPictogram.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/components/__snapshots__/cloudPictogram.spec.js.snap -------------------------------------------------------------------------------- /__tests__/components/__snapshots__/logoClouds.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/components/__snapshots__/logoClouds.spec.js.snap -------------------------------------------------------------------------------- /__tests__/components/cityDetails.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/components/cityDetails.spec.js -------------------------------------------------------------------------------- /__tests__/components/cityElement.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/components/cityElement.spec.js -------------------------------------------------------------------------------- /__tests__/components/cloudPictogram.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/components/cloudPictogram.spec.js -------------------------------------------------------------------------------- /__tests__/components/logoClouds.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/components/logoClouds.spec.js -------------------------------------------------------------------------------- /__tests__/components/searchScene.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/components/searchScene.spec.js -------------------------------------------------------------------------------- /__tests__/factories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/factories/index.js -------------------------------------------------------------------------------- /__tests__/mockups/checkCityWeather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/mockups/checkCityWeather.json -------------------------------------------------------------------------------- /__tests__/mockups/fillAutoComplete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/mockups/fillAutoComplete.json -------------------------------------------------------------------------------- /__tests__/mockups/oneCity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/mockups/oneCity.json -------------------------------------------------------------------------------- /__tests__/models/city.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/models/city.spec.js -------------------------------------------------------------------------------- /__tests__/models/weatherInfo.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/models/weatherInfo.spec.js -------------------------------------------------------------------------------- /__tests__/reducers/navReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/reducers/navReducer.spec.js -------------------------------------------------------------------------------- /__tests__/reducers/root-reducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/reducers/root-reducer.spec.js -------------------------------------------------------------------------------- /__tests__/selectors/citySelector.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/selectors/citySelector.spec.js -------------------------------------------------------------------------------- /__tests__/selectors/currentCitySelector.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/selectors/currentCitySelector.spec.js -------------------------------------------------------------------------------- /__tests__/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/__tests__/utils/index.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/src/main/assets/fonts/Nunito-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Nunito-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/src/main/assets/fonts/Nunito-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/src/main/assets/fonts/Nunito-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/keradweather/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/src/main/java/com/keradweather/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/keradweather/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/src/main/java/com/keradweather/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-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/carlesnunez/react-native-weather-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/carlesnunez/react-native-weather-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/carlesnunez/react-native-weather-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'KeradWeather' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/KeradWeather.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeather.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/KeradWeather.xcodeproj/xcshareddata/xcschemes/KeradWeather.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeather.xcodeproj/xcshareddata/xcschemes/KeradWeather.xcscheme -------------------------------------------------------------------------------- /ios/KeradWeather/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeather/AppDelegate.h -------------------------------------------------------------------------------- /ios/KeradWeather/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeather/AppDelegate.m -------------------------------------------------------------------------------- /ios/KeradWeather/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeather/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/KeradWeather/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeather/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/KeradWeather/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeather/Info.plist -------------------------------------------------------------------------------- /ios/KeradWeather/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeather/main.m -------------------------------------------------------------------------------- /ios/KeradWeatherTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeatherTests/Info.plist -------------------------------------------------------------------------------- /ios/KeradWeatherTests/KeradWeatherTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/KeradWeatherTests/KeradWeatherTests.m -------------------------------------------------------------------------------- /ios/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/main.jsbundle -------------------------------------------------------------------------------- /ios/main.jsbundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/ios/main.jsbundle.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/cityList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/actions/cityList.js -------------------------------------------------------------------------------- /src/actions/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/actions/navigation.js -------------------------------------------------------------------------------- /src/actions/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/actions/requests.js -------------------------------------------------------------------------------- /src/assets/fonts/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/assets/fonts/Nunito-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Nunito-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/assets/fonts/Nunito-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/assets/fonts/Nunito-Regular.ttf -------------------------------------------------------------------------------- /src/assets/img/Cloud4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/assets/img/Cloud4.png -------------------------------------------------------------------------------- /src/assets/img/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/assets/img/moon.png -------------------------------------------------------------------------------- /src/assets/img/raindrops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/assets/img/raindrops.png -------------------------------------------------------------------------------- /src/assets/img/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/assets/img/snowflake.png -------------------------------------------------------------------------------- /src/assets/img/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/assets/img/sun.png -------------------------------------------------------------------------------- /src/components/cityDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/components/cityDetails.js -------------------------------------------------------------------------------- /src/components/cityElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/components/cityElement.js -------------------------------------------------------------------------------- /src/components/cloudPictogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/components/cloudPictogram.js -------------------------------------------------------------------------------- /src/components/logoClouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/components/logoClouds.js -------------------------------------------------------------------------------- /src/components/mainScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/components/mainScene.js -------------------------------------------------------------------------------- /src/components/searchScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/components/searchScene.js -------------------------------------------------------------------------------- /src/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/constants/ActionTypes.js -------------------------------------------------------------------------------- /src/containers/cityDetailsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/containers/cityDetailsContainer.js -------------------------------------------------------------------------------- /src/containers/mainSceneContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/containers/mainSceneContainer.js -------------------------------------------------------------------------------- /src/containers/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/containers/root.js -------------------------------------------------------------------------------- /src/containers/searchSceneContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/containers/searchSceneContainer.js -------------------------------------------------------------------------------- /src/models/city.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/models/city.js -------------------------------------------------------------------------------- /src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/models/index.js -------------------------------------------------------------------------------- /src/models/weatherInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/models/weatherInfo.js -------------------------------------------------------------------------------- /src/reducers/navReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/reducers/navReducer.js -------------------------------------------------------------------------------- /src/reducers/root-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/reducers/root-reducer.js -------------------------------------------------------------------------------- /src/selectors/citySelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/selectors/citySelector.js -------------------------------------------------------------------------------- /src/selectors/currentCitySelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/selectors/currentCitySelector.js -------------------------------------------------------------------------------- /src/store/store-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/store/store-configuration.js -------------------------------------------------------------------------------- /src/styles/cloudPictogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/styles/cloudPictogram.js -------------------------------------------------------------------------------- /src/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/styles/index.js -------------------------------------------------------------------------------- /src/styles/logoClouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/styles/logoClouds.js -------------------------------------------------------------------------------- /src/styles/searchScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesnunez/react-native-weather-app/HEAD/src/styles/searchScene.js --------------------------------------------------------------------------------