├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── animations │ ├── ErrorAnimation.json │ └── Loading.json ├── favicon.png ├── icon.png ├── splash.png └── weatherIcons │ ├── Cloudy.png │ ├── Drizzle.png │ ├── Haze.png │ ├── Mist.png │ ├── Night_Clear.png │ ├── Night_Cloudy.png │ ├── Night_Drizzle.png │ ├── Night_Mist.png │ ├── Rain.png │ ├── SnowFall.png │ ├── Sunny.png │ └── ThunderStorm.png ├── babel.config.js ├── components ├── DailyData.tsx └── RootNavigator.tsx ├── constants ├── colors.ts └── keys.ts ├── context └── TempartureContext.tsx ├── package.json ├── screens ├── ErrorPage.tsx ├── Home.tsx ├── Loading.tsx ├── Search.tsx ├── Setting.tsx └── index.ts ├── showcase ├── screen2.gif ├── screen3.gif ├── screen4.gif └── sscreen1.gif └── tsconfig.json /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/animations/ErrorAnimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/animations/ErrorAnimation.json -------------------------------------------------------------------------------- /assets/animations/Loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/animations/Loading.json -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/weatherIcons/Cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Cloudy.png -------------------------------------------------------------------------------- /assets/weatherIcons/Drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Drizzle.png -------------------------------------------------------------------------------- /assets/weatherIcons/Haze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Haze.png -------------------------------------------------------------------------------- /assets/weatherIcons/Mist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Mist.png -------------------------------------------------------------------------------- /assets/weatherIcons/Night_Clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Night_Clear.png -------------------------------------------------------------------------------- /assets/weatherIcons/Night_Cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Night_Cloudy.png -------------------------------------------------------------------------------- /assets/weatherIcons/Night_Drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Night_Drizzle.png -------------------------------------------------------------------------------- /assets/weatherIcons/Night_Mist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Night_Mist.png -------------------------------------------------------------------------------- /assets/weatherIcons/Rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Rain.png -------------------------------------------------------------------------------- /assets/weatherIcons/SnowFall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/SnowFall.png -------------------------------------------------------------------------------- /assets/weatherIcons/Sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/Sunny.png -------------------------------------------------------------------------------- /assets/weatherIcons/ThunderStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/assets/weatherIcons/ThunderStorm.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/DailyData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/components/DailyData.tsx -------------------------------------------------------------------------------- /components/RootNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/components/RootNavigator.tsx -------------------------------------------------------------------------------- /constants/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/constants/colors.ts -------------------------------------------------------------------------------- /constants/keys.ts: -------------------------------------------------------------------------------- 1 | export const API_KEY = 'enter your own'; //PAVITRA 2 | -------------------------------------------------------------------------------- /context/TempartureContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/context/TempartureContext.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/package.json -------------------------------------------------------------------------------- /screens/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/screens/ErrorPage.tsx -------------------------------------------------------------------------------- /screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/screens/Home.tsx -------------------------------------------------------------------------------- /screens/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/screens/Loading.tsx -------------------------------------------------------------------------------- /screens/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/screens/Search.tsx -------------------------------------------------------------------------------- /screens/Setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/screens/Setting.tsx -------------------------------------------------------------------------------- /screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/screens/index.ts -------------------------------------------------------------------------------- /showcase/screen2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/showcase/screen2.gif -------------------------------------------------------------------------------- /showcase/screen3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/showcase/screen3.gif -------------------------------------------------------------------------------- /showcase/screen4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/showcase/screen4.gif -------------------------------------------------------------------------------- /showcase/sscreen1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/showcase/sscreen1.gif -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavitra554/Weather_App/HEAD/tsconfig.json --------------------------------------------------------------------------------