├── .buckconfig ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ └── App-test.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── openweather │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties.example └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── OpenWeather-tvOS │ └── Info.plist ├── OpenWeather-tvOSTests │ └── Info.plist ├── OpenWeather.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── OpenWeather-tvOS.xcscheme │ │ └── OpenWeather.xcscheme ├── OpenWeather.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── OpenWeather │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── OpenWeatherTests │ ├── Info.plist │ └── OpenWeatherTests.m ├── Podfile └── Podfile.lock ├── jsconfig.json ├── metro.config.js ├── package.json ├── readme ├── bookmark_detail.png ├── bookmarked_location.png ├── bookmarked_showing.png ├── logo.png └── map_view.png ├── src ├── assets │ └── lottie-animations │ │ └── sunny.json ├── components │ └── ForecastDetails │ │ ├── index.js │ │ └── styles.js ├── config │ └── ReactotronConfig.js ├── index.js ├── pages │ └── Main │ │ └── index.js ├── routes.js └── services │ └── api.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | OPEN_WEATHER_MAP_APP_ID= 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/openweather/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/java/com/openweather/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/openweather/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/java/com/openweather/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/local.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/local.properties.example -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/index.js -------------------------------------------------------------------------------- /ios/OpenWeather-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/OpenWeather-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/OpenWeather.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/OpenWeather.xcodeproj/xcshareddata/xcschemes/OpenWeather-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather.xcodeproj/xcshareddata/xcschemes/OpenWeather-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/OpenWeather.xcodeproj/xcshareddata/xcschemes/OpenWeather.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather.xcodeproj/xcshareddata/xcschemes/OpenWeather.xcscheme -------------------------------------------------------------------------------- /ios/OpenWeather.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/OpenWeather.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/OpenWeather/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather/AppDelegate.h -------------------------------------------------------------------------------- /ios/OpenWeather/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather/AppDelegate.m -------------------------------------------------------------------------------- /ios/OpenWeather/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/OpenWeather/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/OpenWeather/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/OpenWeather/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather/Info.plist -------------------------------------------------------------------------------- /ios/OpenWeather/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeather/main.m -------------------------------------------------------------------------------- /ios/OpenWeatherTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeatherTests/Info.plist -------------------------------------------------------------------------------- /ios/OpenWeatherTests/OpenWeatherTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/OpenWeatherTests/OpenWeatherTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/jsconfig.json -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/package.json -------------------------------------------------------------------------------- /readme/bookmark_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/readme/bookmark_detail.png -------------------------------------------------------------------------------- /readme/bookmarked_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/readme/bookmarked_location.png -------------------------------------------------------------------------------- /readme/bookmarked_showing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/readme/bookmarked_showing.png -------------------------------------------------------------------------------- /readme/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/readme/logo.png -------------------------------------------------------------------------------- /readme/map_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/readme/map_view.png -------------------------------------------------------------------------------- /src/assets/lottie-animations/sunny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/src/assets/lottie-animations/sunny.json -------------------------------------------------------------------------------- /src/components/ForecastDetails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/src/components/ForecastDetails/index.js -------------------------------------------------------------------------------- /src/components/ForecastDetails/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/src/components/ForecastDetails/styles.js -------------------------------------------------------------------------------- /src/config/ReactotronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/src/config/ReactotronConfig.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/src/pages/Main/index.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/src/services/api.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmontano/openweathermap-reactnative/HEAD/yarn.lock --------------------------------------------------------------------------------