├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── rnweatherapp │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-BoldItalic.ttf │ │ │ ├── Lato-Italic.ttf │ │ │ ├── Lato-Light.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ └── Lato-Thin.ttf │ │ ├── java │ │ └── com │ │ │ └── rnweatherapp │ │ │ ├── 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 └── settings.gradle ├── app.json ├── assets ├── cloudy.jpeg ├── cloudy.svg ├── fonts │ ├── Lato-Bold.ttf │ ├── Lato-BoldItalic.ttf │ ├── Lato-Italic.ttf │ ├── Lato-Light.ttf │ ├── Lato-Regular.ttf │ └── Lato-Thin.ttf ├── menu.svg ├── moon.svg ├── night2.jpg ├── rain.svg ├── rainy.jpg ├── search.svg ├── sun.svg └── sunny.jpg ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── RNWeatherApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── RNWeatherApp.xcscheme ├── RNWeatherApp.xcworkspace │ └── contents.xcworkspacedata ├── RNWeatherApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── RNWeatherAppTests │ ├── Info.plist │ └── RNWeatherAppTests.m ├── metro.config.js ├── model └── locations.js ├── package.json ├── react-native.config.js └── screenshots ├── weather1.png ├── weather2.png ├── weather3.png └── weather4.png /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/rnweatherapp/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/debug/java/com/rnweatherapp/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/assets/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/assets/fonts/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/assets/fonts/Lato-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/assets/fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/assets/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/assets/fonts/Lato-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnweatherapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/java/com/rnweatherapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnweatherapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/java/com/rnweatherapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/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/itzpradip/react-native-weather-app-ui/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/itzpradip/react-native-weather-app-ui/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/itzpradip/react-native-weather-app-ui/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/itzpradip/react-native-weather-app-ui/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/itzpradip/react-native-weather-app-ui/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/itzpradip/react-native-weather-app-ui/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/itzpradip/react-native-weather-app-ui/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/itzpradip/react-native-weather-app-ui/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/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/app.json -------------------------------------------------------------------------------- /assets/cloudy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/cloudy.jpeg -------------------------------------------------------------------------------- /assets/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/cloudy.svg -------------------------------------------------------------------------------- /assets/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/fonts/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/fonts/Lato-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/fonts/Lato-Thin.ttf -------------------------------------------------------------------------------- /assets/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/menu.svg -------------------------------------------------------------------------------- /assets/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/moon.svg -------------------------------------------------------------------------------- /assets/night2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/night2.jpg -------------------------------------------------------------------------------- /assets/rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/rain.svg -------------------------------------------------------------------------------- /assets/rainy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/rainy.jpg -------------------------------------------------------------------------------- /assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/search.svg -------------------------------------------------------------------------------- /assets/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/sun.svg -------------------------------------------------------------------------------- /assets/sunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/assets/sunny.jpg -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/RNWeatherApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNWeatherApp.xcodeproj/xcshareddata/xcschemes/RNWeatherApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp.xcodeproj/xcshareddata/xcschemes/RNWeatherApp.xcscheme -------------------------------------------------------------------------------- /ios/RNWeatherApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/RNWeatherApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/RNWeatherApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp/AppDelegate.m -------------------------------------------------------------------------------- /ios/RNWeatherApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RNWeatherApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RNWeatherApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp/Info.plist -------------------------------------------------------------------------------- /ios/RNWeatherApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/RNWeatherApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherApp/main.m -------------------------------------------------------------------------------- /ios/RNWeatherAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherAppTests/Info.plist -------------------------------------------------------------------------------- /ios/RNWeatherAppTests/RNWeatherAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/ios/RNWeatherAppTests/RNWeatherAppTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/metro.config.js -------------------------------------------------------------------------------- /model/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/model/locations.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/react-native.config.js -------------------------------------------------------------------------------- /screenshots/weather1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/screenshots/weather1.png -------------------------------------------------------------------------------- /screenshots/weather2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/screenshots/weather2.png -------------------------------------------------------------------------------- /screenshots/weather3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/screenshots/weather3.png -------------------------------------------------------------------------------- /screenshots/weather4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/react-native-weather-app-ui/HEAD/screenshots/weather4.png --------------------------------------------------------------------------------