├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── CLIMA_BUG_REPORT.yaml │ ├── CLIMA_FEATURE_REQUEST.yml │ └── config.yml └── SECURITY.md ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── clima │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── app_icon.png │ │ │ ├── drawable-mdpi │ │ │ └── app_icon.png │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ └── app_icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── app_icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── app_icon.png │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── raw │ │ │ ├── bubble.wav │ │ │ └── keep.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── fonts │ └── manrope │ │ ├── Manrope-Bold.ttf │ │ ├── Manrope-Light.ttf │ │ ├── Manrope-Medium.ttf │ │ └── Manrope-Regular.ttf ├── images │ ├── Cover.png │ ├── Thumbnail.png │ ├── logo.png │ ├── preview.mp4 │ └── weather │ │ ├── Day Clouds.webp │ │ ├── Day Rain.webp │ │ ├── Day Snow.webp │ │ ├── Day Storm.webp │ │ ├── Day Sun.webp │ │ ├── Day Wind.webp │ │ ├── Night Clouds.webp │ │ ├── Night Moon.webp │ │ ├── Night Rain.webp │ │ ├── Night Snow.webp │ │ ├── Night Storm.webp │ │ ├── Night Wind.webp │ │ ├── day_blured.svg │ │ ├── humidity.svg │ │ ├── night_blured.svg │ │ ├── rain.svg │ │ ├── snow.svg │ │ ├── sun.svg │ │ ├── sunny.svg │ │ └── wind.svg ├── lottie │ ├── day_cloudy.json │ ├── day_rain.json │ ├── day_snow.json │ ├── faliure.json │ ├── loading_weather.json │ ├── location.json │ ├── location_not_found.json │ ├── location_service.json │ ├── night.json │ ├── night_cloudy.json │ ├── night_rain.json │ ├── night_snow.json │ ├── no_internet.json │ ├── storm.json │ ├── sun.json │ └── wind.json └── map │ └── map_dark_theme.json ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-20@2x.png │ │ │ ├── AppIcon-20@2x~ipad.png │ │ │ ├── AppIcon-20@3x.png │ │ │ ├── AppIcon-20~ipad.png │ │ │ ├── AppIcon-29.png │ │ │ ├── AppIcon-29@2x.png │ │ │ ├── AppIcon-29@2x~ipad.png │ │ │ ├── AppIcon-29@3x.png │ │ │ ├── AppIcon-29~ipad.png │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-40@2x~ipad.png │ │ │ ├── AppIcon-40@3x.png │ │ │ ├── AppIcon-40~ipad.png │ │ │ ├── AppIcon-60@2x~car.png │ │ │ ├── AppIcon-60@3x~car.png │ │ │ ├── AppIcon-83.5@2x~ipad.png │ │ │ ├── AppIcon@2x.png │ │ │ ├── AppIcon@2x~ipad.png │ │ │ ├── AppIcon@3x.png │ │ │ ├── AppIcon~ios-marketing.png │ │ │ ├── AppIcon~ipad.png │ │ │ └── Contents.json │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── lib ├── app │ ├── app.dart │ ├── bloc │ │ ├── bloc.dart │ │ ├── location │ │ │ ├── location_bloc.dart │ │ │ ├── location_event.dart │ │ │ └── location_state.dart │ │ └── theme │ │ │ ├── theme_cubit.dart │ │ │ └── theme_state.dart │ └── widgets │ │ ├── location_service_disabled.dart │ │ ├── permission_denied_widget.dart │ │ ├── waiting_permission_widget.dart │ │ └── widgets.dart ├── core │ ├── animations │ │ ├── button_animation.dart │ │ ├── fade_slide_animation.dart │ │ └── play_lottie.dart │ ├── common │ │ ├── common.dart │ │ ├── failure_widget.dart │ │ ├── loading_widget.dart │ │ ├── primary_button.dart │ │ ├── temperature_text.dart │ │ └── weather_image.dart │ ├── enum │ │ └── weather_state.dart │ ├── extensions │ │ ├── map_weather_code_extensions.dart │ │ └── weather_message_extension.dart │ ├── helper │ │ ├── date_helper.dart │ │ ├── env_helper.dart │ │ ├── functions.dart │ │ ├── location_helper.dart │ │ └── lotte_cach_helper.dart │ ├── managers │ │ ├── dependency_manager.dart │ │ ├── managers.dart │ │ └── notification_manager.dart │ ├── navigation │ │ ├── app_routes.dart │ │ ├── navigation.dart │ │ └── navigation_helper.dart │ ├── network │ │ ├── endpoints.dart │ │ ├── error_handling.dart │ │ ├── network.dart │ │ ├── network_helper.dart │ │ └── response │ │ │ ├── code.dart │ │ │ ├── extension.dart │ │ │ ├── failure.dart │ │ │ ├── message.dart │ │ │ └── type.dart │ └── utils │ │ ├── app_colors.dart │ │ ├── app_decoration.dart │ │ ├── app_dimn.dart │ │ ├── app_images.dart │ │ ├── app_themes.dart │ │ ├── app_typography.dart │ │ └── utils.dart ├── features │ ├── daily_forecast │ │ ├── cubit │ │ │ ├── daily_forecast_cubit.dart │ │ │ └── daily_forecast_state.dart │ │ ├── data │ │ │ ├── models │ │ │ │ ├── daily_weather_model.dart │ │ │ │ └── open_meteo_daily_response.dart │ │ │ └── repo │ │ │ │ ├── daily_forecast_repo.dart │ │ │ │ └── daily_forecast_repo_impl.dart │ │ └── screens │ │ │ ├── daily_forecast_screen.dart │ │ │ └── widgets │ │ │ ├── daily_forecast_widget.dart │ │ │ ├── daily_widget.dart │ │ │ ├── date_widget.dart │ │ │ └── widgets.dart │ ├── home │ │ ├── cubit │ │ │ ├── home_cubit.dart │ │ │ └── home_state.dart │ │ ├── data │ │ │ ├── model │ │ │ │ ├── weather.dart │ │ │ │ ├── weather_model.dart │ │ │ │ └── weather_theme.dart │ │ │ └── repo │ │ │ │ ├── home_repo.dart │ │ │ │ └── home_repo_impl.dart │ │ └── screens │ │ │ ├── home_screen.dart │ │ │ └── widgets │ │ │ ├── home_widget.dart │ │ │ ├── time_and_location.dart │ │ │ ├── weather_status.dart │ │ │ └── widgets.dart │ ├── hourly_forecast │ │ ├── cubit │ │ │ ├── hourly_forecast_cubit.dart │ │ │ └── hourly_forecast_state.dart │ │ ├── data │ │ │ ├── models │ │ │ │ ├── forecast_info_model.dart │ │ │ │ ├── open_meteo_hourly_response_model.dart │ │ │ │ ├── weather_daily_model.dart │ │ │ │ ├── weather_hourly_model.dart │ │ │ │ └── weather_news_model.dart │ │ │ └── repo │ │ │ │ ├── hourly_forecast_repo.dart │ │ │ │ └── hourly_forecast_repo_impl.dart │ │ └── screens │ │ │ ├── hourly_forecast_screen.dart │ │ │ └── widgets │ │ │ ├── custom_app_bar.dart │ │ │ ├── day_and_night_widget.dart │ │ │ ├── forecast_info_widget.dart │ │ │ ├── hourly_forecast_details.dart │ │ │ ├── hourly_forecast_widget.dart │ │ │ ├── news.dart │ │ │ ├── news_widget.dart │ │ │ └── widgets.dart │ ├── landing_page │ │ ├── bloc │ │ │ └── nav_bar │ │ │ │ ├── nav_bar_bloc.dart │ │ │ │ ├── nav_bar_event.dart │ │ │ │ └── nav_bar_state.dart │ │ ├── landing_screen.dart │ │ └── widgets │ │ │ ├── bottom_nav_bar_list.dart │ │ │ └── screens.dart │ └── map │ │ └── screens │ │ └── map_screen.dart └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/CLIMA_BUG_REPORT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/.github/ISSUE_TEMPLATE/CLIMA_BUG_REPORT.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/CLIMA_FEATURE_REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/.github/ISSUE_TEMPLATE/CLIMA_FEATURE_REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/clima/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/kotlin/com/example/clima/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/drawable-hdpi/app_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/drawable-mdpi/app_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/drawable-xhdpi/app_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/drawable-xxhdpi/app_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/drawable-xxxhdpi/app_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/raw/bubble.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/raw/bubble.wav -------------------------------------------------------------------------------- /android/app/src/main/res/raw/keep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/raw/keep.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/manrope/Manrope-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/fonts/manrope/Manrope-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/manrope/Manrope-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/fonts/manrope/Manrope-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/manrope/Manrope-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/fonts/manrope/Manrope-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/manrope/Manrope-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/fonts/manrope/Manrope-Regular.ttf -------------------------------------------------------------------------------- /assets/images/Cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/Cover.png -------------------------------------------------------------------------------- /assets/images/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/Thumbnail.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/preview.mp4 -------------------------------------------------------------------------------- /assets/images/weather/Day Clouds.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Day Clouds.webp -------------------------------------------------------------------------------- /assets/images/weather/Day Rain.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Day Rain.webp -------------------------------------------------------------------------------- /assets/images/weather/Day Snow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Day Snow.webp -------------------------------------------------------------------------------- /assets/images/weather/Day Storm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Day Storm.webp -------------------------------------------------------------------------------- /assets/images/weather/Day Sun.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Day Sun.webp -------------------------------------------------------------------------------- /assets/images/weather/Day Wind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Day Wind.webp -------------------------------------------------------------------------------- /assets/images/weather/Night Clouds.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Night Clouds.webp -------------------------------------------------------------------------------- /assets/images/weather/Night Moon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Night Moon.webp -------------------------------------------------------------------------------- /assets/images/weather/Night Rain.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Night Rain.webp -------------------------------------------------------------------------------- /assets/images/weather/Night Snow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Night Snow.webp -------------------------------------------------------------------------------- /assets/images/weather/Night Storm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Night Storm.webp -------------------------------------------------------------------------------- /assets/images/weather/Night Wind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/Night Wind.webp -------------------------------------------------------------------------------- /assets/images/weather/day_blured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/day_blured.svg -------------------------------------------------------------------------------- /assets/images/weather/humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/humidity.svg -------------------------------------------------------------------------------- /assets/images/weather/night_blured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/night_blured.svg -------------------------------------------------------------------------------- /assets/images/weather/rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/rain.svg -------------------------------------------------------------------------------- /assets/images/weather/snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/snow.svg -------------------------------------------------------------------------------- /assets/images/weather/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/sun.svg -------------------------------------------------------------------------------- /assets/images/weather/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/sunny.svg -------------------------------------------------------------------------------- /assets/images/weather/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/images/weather/wind.svg -------------------------------------------------------------------------------- /assets/lottie/day_cloudy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/day_cloudy.json -------------------------------------------------------------------------------- /assets/lottie/day_rain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/day_rain.json -------------------------------------------------------------------------------- /assets/lottie/day_snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/day_snow.json -------------------------------------------------------------------------------- /assets/lottie/faliure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/faliure.json -------------------------------------------------------------------------------- /assets/lottie/loading_weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/loading_weather.json -------------------------------------------------------------------------------- /assets/lottie/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/location.json -------------------------------------------------------------------------------- /assets/lottie/location_not_found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/location_not_found.json -------------------------------------------------------------------------------- /assets/lottie/location_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/location_service.json -------------------------------------------------------------------------------- /assets/lottie/night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/night.json -------------------------------------------------------------------------------- /assets/lottie/night_cloudy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/night_cloudy.json -------------------------------------------------------------------------------- /assets/lottie/night_rain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/night_rain.json -------------------------------------------------------------------------------- /assets/lottie/night_snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/night_snow.json -------------------------------------------------------------------------------- /assets/lottie/no_internet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/no_internet.json -------------------------------------------------------------------------------- /assets/lottie/storm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/storm.json -------------------------------------------------------------------------------- /assets/lottie/sun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/sun.json -------------------------------------------------------------------------------- /assets/lottie/wind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/lottie/wind.json -------------------------------------------------------------------------------- /assets/map/map_dark_theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/assets/map/map_dark_theme.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x~car.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x~car.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/app.dart -------------------------------------------------------------------------------- /lib/app/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/bloc/bloc.dart -------------------------------------------------------------------------------- /lib/app/bloc/location/location_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/bloc/location/location_bloc.dart -------------------------------------------------------------------------------- /lib/app/bloc/location/location_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/bloc/location/location_event.dart -------------------------------------------------------------------------------- /lib/app/bloc/location/location_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/bloc/location/location_state.dart -------------------------------------------------------------------------------- /lib/app/bloc/theme/theme_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/bloc/theme/theme_cubit.dart -------------------------------------------------------------------------------- /lib/app/bloc/theme/theme_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/bloc/theme/theme_state.dart -------------------------------------------------------------------------------- /lib/app/widgets/location_service_disabled.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/widgets/location_service_disabled.dart -------------------------------------------------------------------------------- /lib/app/widgets/permission_denied_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/widgets/permission_denied_widget.dart -------------------------------------------------------------------------------- /lib/app/widgets/waiting_permission_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/widgets/waiting_permission_widget.dart -------------------------------------------------------------------------------- /lib/app/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/app/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/core/animations/button_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/animations/button_animation.dart -------------------------------------------------------------------------------- /lib/core/animations/fade_slide_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/animations/fade_slide_animation.dart -------------------------------------------------------------------------------- /lib/core/animations/play_lottie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/animations/play_lottie.dart -------------------------------------------------------------------------------- /lib/core/common/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/common/common.dart -------------------------------------------------------------------------------- /lib/core/common/failure_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/common/failure_widget.dart -------------------------------------------------------------------------------- /lib/core/common/loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/common/loading_widget.dart -------------------------------------------------------------------------------- /lib/core/common/primary_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/common/primary_button.dart -------------------------------------------------------------------------------- /lib/core/common/temperature_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/common/temperature_text.dart -------------------------------------------------------------------------------- /lib/core/common/weather_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/common/weather_image.dart -------------------------------------------------------------------------------- /lib/core/enum/weather_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/enum/weather_state.dart -------------------------------------------------------------------------------- /lib/core/extensions/map_weather_code_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/extensions/map_weather_code_extensions.dart -------------------------------------------------------------------------------- /lib/core/extensions/weather_message_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/extensions/weather_message_extension.dart -------------------------------------------------------------------------------- /lib/core/helper/date_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/helper/date_helper.dart -------------------------------------------------------------------------------- /lib/core/helper/env_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/helper/env_helper.dart -------------------------------------------------------------------------------- /lib/core/helper/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/helper/functions.dart -------------------------------------------------------------------------------- /lib/core/helper/location_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/helper/location_helper.dart -------------------------------------------------------------------------------- /lib/core/helper/lotte_cach_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/helper/lotte_cach_helper.dart -------------------------------------------------------------------------------- /lib/core/managers/dependency_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/managers/dependency_manager.dart -------------------------------------------------------------------------------- /lib/core/managers/managers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/managers/managers.dart -------------------------------------------------------------------------------- /lib/core/managers/notification_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/managers/notification_manager.dart -------------------------------------------------------------------------------- /lib/core/navigation/app_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/navigation/app_routes.dart -------------------------------------------------------------------------------- /lib/core/navigation/navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/navigation/navigation.dart -------------------------------------------------------------------------------- /lib/core/navigation/navigation_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/navigation/navigation_helper.dart -------------------------------------------------------------------------------- /lib/core/network/endpoints.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/network/endpoints.dart -------------------------------------------------------------------------------- /lib/core/network/error_handling.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/network/error_handling.dart -------------------------------------------------------------------------------- /lib/core/network/network.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/network/network.dart -------------------------------------------------------------------------------- /lib/core/network/network_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/network/network_helper.dart -------------------------------------------------------------------------------- /lib/core/network/response/code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/network/response/code.dart -------------------------------------------------------------------------------- /lib/core/network/response/extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/network/response/extension.dart -------------------------------------------------------------------------------- /lib/core/network/response/failure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/network/response/failure.dart -------------------------------------------------------------------------------- /lib/core/network/response/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/network/response/message.dart -------------------------------------------------------------------------------- /lib/core/network/response/type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/network/response/type.dart -------------------------------------------------------------------------------- /lib/core/utils/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/utils/app_colors.dart -------------------------------------------------------------------------------- /lib/core/utils/app_decoration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/utils/app_decoration.dart -------------------------------------------------------------------------------- /lib/core/utils/app_dimn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/utils/app_dimn.dart -------------------------------------------------------------------------------- /lib/core/utils/app_images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/utils/app_images.dart -------------------------------------------------------------------------------- /lib/core/utils/app_themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/utils/app_themes.dart -------------------------------------------------------------------------------- /lib/core/utils/app_typography.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/utils/app_typography.dart -------------------------------------------------------------------------------- /lib/core/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/core/utils/utils.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/cubit/daily_forecast_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/cubit/daily_forecast_cubit.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/cubit/daily_forecast_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/cubit/daily_forecast_state.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/data/models/daily_weather_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/data/models/daily_weather_model.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/data/models/open_meteo_daily_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/data/models/open_meteo_daily_response.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/data/repo/daily_forecast_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/data/repo/daily_forecast_repo.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/data/repo/daily_forecast_repo_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/data/repo/daily_forecast_repo_impl.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/screens/daily_forecast_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/screens/daily_forecast_screen.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/screens/widgets/daily_forecast_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/screens/widgets/daily_forecast_widget.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/screens/widgets/daily_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/screens/widgets/daily_widget.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/screens/widgets/date_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/screens/widgets/date_widget.dart -------------------------------------------------------------------------------- /lib/features/daily_forecast/screens/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/daily_forecast/screens/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/features/home/cubit/home_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/cubit/home_cubit.dart -------------------------------------------------------------------------------- /lib/features/home/cubit/home_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/cubit/home_state.dart -------------------------------------------------------------------------------- /lib/features/home/data/model/weather.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/data/model/weather.dart -------------------------------------------------------------------------------- /lib/features/home/data/model/weather_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/data/model/weather_model.dart -------------------------------------------------------------------------------- /lib/features/home/data/model/weather_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/data/model/weather_theme.dart -------------------------------------------------------------------------------- /lib/features/home/data/repo/home_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/data/repo/home_repo.dart -------------------------------------------------------------------------------- /lib/features/home/data/repo/home_repo_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/data/repo/home_repo_impl.dart -------------------------------------------------------------------------------- /lib/features/home/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/features/home/screens/widgets/home_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/screens/widgets/home_widget.dart -------------------------------------------------------------------------------- /lib/features/home/screens/widgets/time_and_location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/screens/widgets/time_and_location.dart -------------------------------------------------------------------------------- /lib/features/home/screens/widgets/weather_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/screens/widgets/weather_status.dart -------------------------------------------------------------------------------- /lib/features/home/screens/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/home/screens/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/cubit/hourly_forecast_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/cubit/hourly_forecast_cubit.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/cubit/hourly_forecast_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/cubit/hourly_forecast_state.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/data/models/forecast_info_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/data/models/forecast_info_model.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/data/models/open_meteo_hourly_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/data/models/open_meteo_hourly_response_model.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/data/models/weather_daily_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/data/models/weather_daily_model.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/data/models/weather_hourly_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/data/models/weather_hourly_model.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/data/models/weather_news_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/data/models/weather_news_model.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/data/repo/hourly_forecast_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/data/repo/hourly_forecast_repo.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/data/repo/hourly_forecast_repo_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/data/repo/hourly_forecast_repo_impl.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/screens/hourly_forecast_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/screens/hourly_forecast_screen.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/screens/widgets/custom_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/screens/widgets/custom_app_bar.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/screens/widgets/day_and_night_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/screens/widgets/day_and_night_widget.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/screens/widgets/forecast_info_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/screens/widgets/forecast_info_widget.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/screens/widgets/hourly_forecast_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/screens/widgets/hourly_forecast_details.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/screens/widgets/hourly_forecast_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/screens/widgets/hourly_forecast_widget.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/screens/widgets/news.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/screens/widgets/news.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/screens/widgets/news_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/screens/widgets/news_widget.dart -------------------------------------------------------------------------------- /lib/features/hourly_forecast/screens/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/hourly_forecast/screens/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/features/landing_page/bloc/nav_bar/nav_bar_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/landing_page/bloc/nav_bar/nav_bar_bloc.dart -------------------------------------------------------------------------------- /lib/features/landing_page/bloc/nav_bar/nav_bar_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/landing_page/bloc/nav_bar/nav_bar_event.dart -------------------------------------------------------------------------------- /lib/features/landing_page/bloc/nav_bar/nav_bar_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/landing_page/bloc/nav_bar/nav_bar_state.dart -------------------------------------------------------------------------------- /lib/features/landing_page/landing_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/landing_page/landing_screen.dart -------------------------------------------------------------------------------- /lib/features/landing_page/widgets/bottom_nav_bar_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/landing_page/widgets/bottom_nav_bar_list.dart -------------------------------------------------------------------------------- /lib/features/landing_page/widgets/screens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/landing_page/widgets/screens.dart -------------------------------------------------------------------------------- /lib/features/map/screens/map_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/features/map/screens/map_screen.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/lib/main.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moha-b/Clima/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------