├── .gitignore ├── .gradle ├── 5.2.1 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ └── fileHashes.lock │ └── gc.properties ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ └── cache.properties └── vcs-1 │ └── gc.properties ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── libs │ │ ├── AMap3DMap_7.7.0_AMapSearch_7.7.0_20201027.jar │ │ ├── arm64-v8a │ │ │ └── libAMapSDK_MAP_v7_7_0.so │ │ └── armeabi-v7a │ │ │ └── libAMapSDK_MAP_v7_7_0.so │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_dynamic_weather │ │ │ │ ├── RainParam.kt │ │ │ │ ├── ThunderParam.kt │ │ │ │ ├── WeatherAnimWidget.kt │ │ │ │ ├── WeatherAnimWidgetService.kt │ │ │ │ ├── WeatherBgFactory.kt │ │ │ │ └── WeatherResFactory.kt │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_dynamic_weather │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MarqueeTextView.kt │ │ │ │ ├── base │ │ │ │ ├── ApiManager.kt │ │ │ │ ├── BaseActivity.kt │ │ │ │ ├── BaseCallback.kt │ │ │ │ ├── BaseConstant.kt │ │ │ │ ├── BaseFragment.kt │ │ │ │ ├── BaseFragmentActivity.kt │ │ │ │ ├── CommonUtils.kt │ │ │ │ ├── LogUtils.kt │ │ │ │ ├── ModuleActivity.kt │ │ │ │ ├── UiUtils.kt │ │ │ │ └── WeatherUtils.kt │ │ │ │ ├── fragment │ │ │ │ ├── JikeFragment.kt │ │ │ │ └── ZhuGeFragment.kt │ │ │ │ ├── map │ │ │ │ ├── AmapLocationMarkerView.kt │ │ │ │ ├── MinuteChartView.kt │ │ │ │ ├── MinuteFragment.kt │ │ │ │ ├── MinuteLayout.kt │ │ │ │ ├── MinuteProgressView.kt │ │ │ │ ├── MinuteResponse.kt │ │ │ │ ├── MinuteService.kt │ │ │ │ ├── MinuteViewModel.kt │ │ │ │ ├── RainData.kt │ │ │ │ ├── RealtimeResponse.kt │ │ │ │ └── WeatherAllData.kt │ │ │ │ └── widget │ │ │ │ ├── BigWidgetProvider.kt │ │ │ │ └── BigWidgetSettingActivity.kt │ │ └── res │ │ │ ├── drawable-nodpi │ │ │ └── example_appwidget_preview.png │ │ │ ├── drawable │ │ │ ├── launch_background.xml │ │ │ ├── shape_minute_bottom_bg.xml │ │ │ └── shape_minute_progress_bg.xml │ │ │ ├── layout │ │ │ ├── activity_big_widget_setting.xml │ │ │ ├── fragment_minute.xml │ │ │ ├── layout_jike.xml │ │ │ ├── layout_minute_progress.xml │ │ │ ├── layout_public_activity.xml │ │ │ ├── layout_widget_big.xml │ │ │ ├── layout_zhuge.xml │ │ │ └── weather_anim_widget.xml │ │ │ ├── mipmap-xxhdpi │ │ │ ├── cloud.webp │ │ │ ├── ic_common_location.png │ │ │ ├── ic_common_refresh_vector.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_rain_area_pause.png │ │ │ ├── ic_rain_area_play.png │ │ │ ├── ic_zoom_in.png │ │ │ ├── ic_zoom_out.png │ │ │ ├── icon_app_widget_tools_4x1_shili.webp │ │ │ ├── icon_app_widget_tools_4x2_shili.webp │ │ │ ├── icon_location.png │ │ │ ├── intensity_of_rainfall_legend.png │ │ │ ├── lightning0.webp │ │ │ ├── lightning1.webp │ │ │ ├── lightning2.webp │ │ │ ├── lightning3.webp │ │ │ ├── lightning4.webp │ │ │ ├── rain.webp │ │ │ └── zx_left_drawer_back.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── big_widget_config.xml │ │ │ ├── filepaths.xml │ │ │ ├── network_config.xml │ │ │ └── weather_anim_widget_info.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── images │ ├── caiyun.png │ ├── carWashing.png │ ├── coldRisk.png │ ├── comfort.png │ ├── dressing.png │ ├── empty.png │ ├── error.png │ ├── ic_launcher.png │ ├── play.png │ ├── typhoon.png │ ├── ultraviolet.png │ └── weather │ ├── cloudy.png │ ├── cloudy_night.png │ ├── foggy.png │ ├── heavy_rain.png │ ├── heavy_snow.png │ ├── middle_rain.png │ ├── middle_snow.png │ ├── overcast.png │ ├── sandy.png │ ├── small_rain.png │ ├── small_snow.png │ ├── sunny.png │ ├── sunny_night.png │ ├── sunrise.png │ └── sunset.png ├── images ├── check.gif ├── grid.gif ├── home.gif ├── list.gif ├── page.gif ├── qrcode.png ├── weather1.png ├── weather2.png └── weather3.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── 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 │ │ ├── Contents.json │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-83.5@2x.png │ │ ├── icon-small-50.png │ │ ├── icon-small-50@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ ├── icon@2x.png │ │ ├── ios-marketing.png │ │ ├── notification-icon@2x.png │ │ ├── notification-icon@3x.png │ │ ├── notification-icon~ipad.png │ │ └── notification-icon~ipad@2x.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 ├── lib ├── app │ ├── res │ │ ├── analytics_constant.dart │ │ ├── common_extension.dart │ │ ├── dimen_constant.dart │ │ ├── string_constant.dart │ │ ├── weather_type.dart │ │ └── widget_state.dart │ ├── router.dart │ └── utils │ │ ├── color_utils.dart │ │ ├── image_utils.dart │ │ ├── location_util.dart │ │ ├── ota_utils.dart │ │ ├── print_utils.dart │ │ ├── router_utils.dart │ │ ├── shared_preference_util.dart │ │ ├── time_util.dart │ │ ├── toast.dart │ │ └── ui_utils.dart ├── bloc │ ├── city │ │ ├── city_bloc.dart │ │ ├── city_event.dart │ │ └── city_state.dart │ └── weather │ │ ├── weather_bloc.dart │ │ ├── weather_event.dart │ │ └── weather_state.dart ├── event │ └── change_index_envent.dart ├── example │ ├── anim_view.dart │ ├── grid_view.dart │ ├── list_view.dart │ ├── main.dart │ └── page_view.dart ├── generated │ └── json │ │ ├── base │ │ ├── json_convert_content.dart │ │ └── json_field.dart │ │ ├── district_model_entity_helper.dart │ │ └── weather_model_entity_helper.dart ├── main.dart ├── model │ ├── city_data.dart │ ├── city_model_entity.dart │ ├── district_model_entity.dart │ └── weather_model_entity.dart ├── net │ ├── code.dart │ ├── net_manager.dart │ ├── rep_result.dart │ ├── response_interceptor.dart │ └── weather_api.dart └── views │ ├── app │ ├── bloc_wrapper.dart │ └── flutter_app.dart │ ├── bg │ └── weather_main_bg.dart │ ├── common │ ├── blur_rect.dart │ ├── loading_dialog.dart │ ├── loading_view.dart │ ├── ota_dialog.dart │ └── wave_view.dart │ └── pages │ ├── about │ └── about_page.dart │ ├── home │ ├── aqi_chart.dart │ ├── city_view.dart │ ├── day_forecast.dart │ ├── day_forecast_detail.dart │ ├── home_page.dart │ ├── hour_forecast.dart │ ├── life_index.dart │ ├── main_app_bar.dart │ ├── main_message.dart │ ├── rain_detail.dart │ ├── real_time.dart │ ├── real_time_detail.dart │ ├── real_time_temp.dart │ ├── speak_anim.dart │ ├── sun_rise_set.dart │ └── test.dart │ ├── manager │ └── manager_page.dart │ └── search │ ├── hot_city_view.dart │ ├── search_app_bar.dart │ ├── search_list_view.dart │ └── search_page.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/5.2.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/5.2.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/.gradle/5.2.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/5.2.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Sep 16 20:02:20 CST 2020 2 | gradle.version=5.2.1 3 | -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/libs/AMap3DMap_7.7.0_AMapSearch_7.7.0_20201027.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/libs/AMap3DMap_7.7.0_AMapSearch_7.7.0_20201027.jar -------------------------------------------------------------------------------- /android/app/libs/arm64-v8a/libAMapSDK_MAP_v7_7_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/libs/arm64-v8a/libAMapSDK_MAP_v7_7_0.so -------------------------------------------------------------------------------- /android/app/libs/armeabi-v7a/libAMapSDK_MAP_v7_7_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/libs/armeabi-v7a/libAMapSDK_MAP_v7_7_0.so -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutter_dynamic_weather/RainParam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/java/com/example/flutter_dynamic_weather/RainParam.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutter_dynamic_weather/ThunderParam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/java/com/example/flutter_dynamic_weather/ThunderParam.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutter_dynamic_weather/WeatherAnimWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/java/com/example/flutter_dynamic_weather/WeatherAnimWidget.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutter_dynamic_weather/WeatherAnimWidgetService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/java/com/example/flutter_dynamic_weather/WeatherAnimWidgetService.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutter_dynamic_weather/WeatherBgFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/java/com/example/flutter_dynamic_weather/WeatherBgFactory.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutter_dynamic_weather/WeatherResFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/java/com/example/flutter_dynamic_weather/WeatherResFactory.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/MarqueeTextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/MarqueeTextView.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/ApiManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/ApiManager.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseCallback.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseConstant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseConstant.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseFragmentActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/BaseFragmentActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/CommonUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/CommonUtils.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/LogUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/LogUtils.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/ModuleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/ModuleActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/UiUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/UiUtils.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/WeatherUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/base/WeatherUtils.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/fragment/JikeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/fragment/JikeFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/fragment/ZhuGeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/fragment/ZhuGeFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/AmapLocationMarkerView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/AmapLocationMarkerView.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteChartView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteChartView.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteLayout.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteProgressView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteProgressView.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteResponse.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteService.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/MinuteViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/RainData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/RainData.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/RealtimeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/RealtimeResponse.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/WeatherAllData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/map/WeatherAllData.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/widget/BigWidgetProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/widget/BigWidgetProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_dynamic_weather/widget/BigWidgetSettingActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/kotlin/com/example/flutter_dynamic_weather/widget/BigWidgetSettingActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-nodpi/example_appwidget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/drawable-nodpi/example_appwidget_preview.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/shape_minute_bottom_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/drawable/shape_minute_bottom_bg.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/shape_minute_progress_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/drawable/shape_minute_progress_bg.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_big_widget_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/layout/activity_big_widget_setting.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fragment_minute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/layout/fragment_minute.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/layout_jike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/layout/layout_jike.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/layout_minute_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/layout/layout_minute_progress.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/layout_public_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/layout/layout_public_activity.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/layout_widget_big.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/layout/layout_widget_big.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/layout_zhuge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/layout/layout_zhuge.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/weather_anim_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/layout/weather_anim_widget.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/cloud.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/cloud.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_common_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_common_location.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_common_refresh_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_common_refresh_vector.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_rain_area_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_rain_area_pause.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_rain_area_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_rain_area_play.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_zoom_in.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_zoom_out.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/icon_app_widget_tools_4x1_shili.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/icon_app_widget_tools_4x1_shili.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/icon_app_widget_tools_4x2_shili.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/icon_app_widget_tools_4x2_shili.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/icon_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/icon_location.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/intensity_of_rainfall_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/intensity_of_rainfall_legend.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/lightning0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/lightning0.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/lightning1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/lightning1.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/lightning2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/lightning2.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/lightning3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/lightning3.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/lightning4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/lightning4.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/rain.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/rain.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/zx_left_drawer_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/mipmap-xxhdpi/zx_left_drawer_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/big_widget_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/xml/big_widget_config.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/network_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/xml/network_config.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/weather_anim_widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/main/res/xml/weather_anim_widget_info.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/caiyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/caiyun.png -------------------------------------------------------------------------------- /assets/images/carWashing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/carWashing.png -------------------------------------------------------------------------------- /assets/images/coldRisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/coldRisk.png -------------------------------------------------------------------------------- /assets/images/comfort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/comfort.png -------------------------------------------------------------------------------- /assets/images/dressing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/dressing.png -------------------------------------------------------------------------------- /assets/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/empty.png -------------------------------------------------------------------------------- /assets/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/error.png -------------------------------------------------------------------------------- /assets/images/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/ic_launcher.png -------------------------------------------------------------------------------- /assets/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/play.png -------------------------------------------------------------------------------- /assets/images/typhoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/typhoon.png -------------------------------------------------------------------------------- /assets/images/ultraviolet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/ultraviolet.png -------------------------------------------------------------------------------- /assets/images/weather/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/cloudy.png -------------------------------------------------------------------------------- /assets/images/weather/cloudy_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/cloudy_night.png -------------------------------------------------------------------------------- /assets/images/weather/foggy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/foggy.png -------------------------------------------------------------------------------- /assets/images/weather/heavy_rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/heavy_rain.png -------------------------------------------------------------------------------- /assets/images/weather/heavy_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/heavy_snow.png -------------------------------------------------------------------------------- /assets/images/weather/middle_rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/middle_rain.png -------------------------------------------------------------------------------- /assets/images/weather/middle_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/middle_snow.png -------------------------------------------------------------------------------- /assets/images/weather/overcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/overcast.png -------------------------------------------------------------------------------- /assets/images/weather/sandy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/sandy.png -------------------------------------------------------------------------------- /assets/images/weather/small_rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/small_rain.png -------------------------------------------------------------------------------- /assets/images/weather/small_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/small_snow.png -------------------------------------------------------------------------------- /assets/images/weather/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/sunny.png -------------------------------------------------------------------------------- /assets/images/weather/sunny_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/sunny_night.png -------------------------------------------------------------------------------- /assets/images/weather/sunrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/sunrise.png -------------------------------------------------------------------------------- /assets/images/weather/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/assets/images/weather/sunset.png -------------------------------------------------------------------------------- /images/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/images/check.gif -------------------------------------------------------------------------------- /images/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/images/grid.gif -------------------------------------------------------------------------------- /images/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/images/home.gif -------------------------------------------------------------------------------- /images/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/images/list.gif -------------------------------------------------------------------------------- /images/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/images/page.gif -------------------------------------------------------------------------------- /images/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/images/qrcode.png -------------------------------------------------------------------------------- /images/weather1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/images/weather1.png -------------------------------------------------------------------------------- /images/weather2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/images/weather2.png -------------------------------------------------------------------------------- /images/weather3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/images/weather3.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small-50.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/ios-marketing.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/app/res/analytics_constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/res/analytics_constant.dart -------------------------------------------------------------------------------- /lib/app/res/common_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/res/common_extension.dart -------------------------------------------------------------------------------- /lib/app/res/dimen_constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/res/dimen_constant.dart -------------------------------------------------------------------------------- /lib/app/res/string_constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/res/string_constant.dart -------------------------------------------------------------------------------- /lib/app/res/weather_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/res/weather_type.dart -------------------------------------------------------------------------------- /lib/app/res/widget_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/res/widget_state.dart -------------------------------------------------------------------------------- /lib/app/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/router.dart -------------------------------------------------------------------------------- /lib/app/utils/color_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/color_utils.dart -------------------------------------------------------------------------------- /lib/app/utils/image_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/image_utils.dart -------------------------------------------------------------------------------- /lib/app/utils/location_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/location_util.dart -------------------------------------------------------------------------------- /lib/app/utils/ota_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/ota_utils.dart -------------------------------------------------------------------------------- /lib/app/utils/print_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/print_utils.dart -------------------------------------------------------------------------------- /lib/app/utils/router_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/router_utils.dart -------------------------------------------------------------------------------- /lib/app/utils/shared_preference_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/shared_preference_util.dart -------------------------------------------------------------------------------- /lib/app/utils/time_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/time_util.dart -------------------------------------------------------------------------------- /lib/app/utils/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/toast.dart -------------------------------------------------------------------------------- /lib/app/utils/ui_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/app/utils/ui_utils.dart -------------------------------------------------------------------------------- /lib/bloc/city/city_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/bloc/city/city_bloc.dart -------------------------------------------------------------------------------- /lib/bloc/city/city_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/bloc/city/city_event.dart -------------------------------------------------------------------------------- /lib/bloc/city/city_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/bloc/city/city_state.dart -------------------------------------------------------------------------------- /lib/bloc/weather/weather_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/bloc/weather/weather_bloc.dart -------------------------------------------------------------------------------- /lib/bloc/weather/weather_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/bloc/weather/weather_event.dart -------------------------------------------------------------------------------- /lib/bloc/weather/weather_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/bloc/weather/weather_state.dart -------------------------------------------------------------------------------- /lib/event/change_index_envent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/event/change_index_envent.dart -------------------------------------------------------------------------------- /lib/example/anim_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/example/anim_view.dart -------------------------------------------------------------------------------- /lib/example/grid_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/example/grid_view.dart -------------------------------------------------------------------------------- /lib/example/list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/example/list_view.dart -------------------------------------------------------------------------------- /lib/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/example/main.dart -------------------------------------------------------------------------------- /lib/example/page_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/example/page_view.dart -------------------------------------------------------------------------------- /lib/generated/json/base/json_convert_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/generated/json/base/json_convert_content.dart -------------------------------------------------------------------------------- /lib/generated/json/base/json_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/generated/json/base/json_field.dart -------------------------------------------------------------------------------- /lib/generated/json/district_model_entity_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/generated/json/district_model_entity_helper.dart -------------------------------------------------------------------------------- /lib/generated/json/weather_model_entity_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/generated/json/weather_model_entity_helper.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/model/city_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/model/city_data.dart -------------------------------------------------------------------------------- /lib/model/city_model_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/model/city_model_entity.dart -------------------------------------------------------------------------------- /lib/model/district_model_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/model/district_model_entity.dart -------------------------------------------------------------------------------- /lib/model/weather_model_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/model/weather_model_entity.dart -------------------------------------------------------------------------------- /lib/net/code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/net/code.dart -------------------------------------------------------------------------------- /lib/net/net_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/net/net_manager.dart -------------------------------------------------------------------------------- /lib/net/rep_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/net/rep_result.dart -------------------------------------------------------------------------------- /lib/net/response_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/net/response_interceptor.dart -------------------------------------------------------------------------------- /lib/net/weather_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/net/weather_api.dart -------------------------------------------------------------------------------- /lib/views/app/bloc_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/app/bloc_wrapper.dart -------------------------------------------------------------------------------- /lib/views/app/flutter_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/app/flutter_app.dart -------------------------------------------------------------------------------- /lib/views/bg/weather_main_bg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/bg/weather_main_bg.dart -------------------------------------------------------------------------------- /lib/views/common/blur_rect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/common/blur_rect.dart -------------------------------------------------------------------------------- /lib/views/common/loading_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/common/loading_dialog.dart -------------------------------------------------------------------------------- /lib/views/common/loading_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/common/loading_view.dart -------------------------------------------------------------------------------- /lib/views/common/ota_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/common/ota_dialog.dart -------------------------------------------------------------------------------- /lib/views/common/wave_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/common/wave_view.dart -------------------------------------------------------------------------------- /lib/views/pages/about/about_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/about/about_page.dart -------------------------------------------------------------------------------- /lib/views/pages/home/aqi_chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/aqi_chart.dart -------------------------------------------------------------------------------- /lib/views/pages/home/city_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/city_view.dart -------------------------------------------------------------------------------- /lib/views/pages/home/day_forecast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/day_forecast.dart -------------------------------------------------------------------------------- /lib/views/pages/home/day_forecast_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/day_forecast_detail.dart -------------------------------------------------------------------------------- /lib/views/pages/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/home_page.dart -------------------------------------------------------------------------------- /lib/views/pages/home/hour_forecast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/hour_forecast.dart -------------------------------------------------------------------------------- /lib/views/pages/home/life_index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/life_index.dart -------------------------------------------------------------------------------- /lib/views/pages/home/main_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/main_app_bar.dart -------------------------------------------------------------------------------- /lib/views/pages/home/main_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/main_message.dart -------------------------------------------------------------------------------- /lib/views/pages/home/rain_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/rain_detail.dart -------------------------------------------------------------------------------- /lib/views/pages/home/real_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/real_time.dart -------------------------------------------------------------------------------- /lib/views/pages/home/real_time_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/real_time_detail.dart -------------------------------------------------------------------------------- /lib/views/pages/home/real_time_temp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/real_time_temp.dart -------------------------------------------------------------------------------- /lib/views/pages/home/speak_anim.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/speak_anim.dart -------------------------------------------------------------------------------- /lib/views/pages/home/sun_rise_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/sun_rise_set.dart -------------------------------------------------------------------------------- /lib/views/pages/home/test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/home/test.dart -------------------------------------------------------------------------------- /lib/views/pages/manager/manager_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/manager/manager_page.dart -------------------------------------------------------------------------------- /lib/views/pages/search/hot_city_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/search/hot_city_view.dart -------------------------------------------------------------------------------- /lib/views/pages/search/search_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/search/search_app_bar.dart -------------------------------------------------------------------------------- /lib/views/pages/search/search_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/search/search_list_view.dart -------------------------------------------------------------------------------- /lib/views/pages/search/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/lib/views/pages/search/search_page.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/SimplicityWeather/HEAD/test/widget_test.dart --------------------------------------------------------------------------------