├── .gitignore ├── .gradle ├── 5.2.1 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ └── fileHashes.lock │ └── gc.properties ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ └── cache.properties └── vcs-1 │ └── gc.properties ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── libraries │ ├── Dart_SDK.xml │ └── Flutter_Plugins.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── example_lib_main_dart.xml └── vcs.xml ├── .metadata ├── CHANGELOG.md ├── CHANGELOG_ZH.md ├── LICENSE ├── README.md ├── README_ZH.md ├── example ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flutter_weather_bg_example │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── 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.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m ├── lib │ ├── anim_view.dart │ ├── grid_view.dart │ ├── list_view.dart │ ├── main.dart │ └── page_view.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── flutter_weather_bg.iml ├── images ├── cloud.webp ├── lightning0.webp ├── lightning1.webp ├── lightning2.webp ├── lightning3.webp ├── lightning4.webp ├── rain.webp ├── snow.webp └── sun.webp ├── lib ├── bg │ ├── weather_bg.dart │ ├── weather_cloud_bg.dart │ ├── weather_color_bg.dart │ ├── weather_night_star_bg.dart │ ├── weather_rain_snow_bg.dart │ └── weather_thunder_bg.dart ├── flutter_weather_bg.dart └── utils │ ├── image_utils.dart │ ├── print_utils.dart │ └── weather_type.dart ├── pubspec.lock ├── pubspec.yaml └── test └── flutter_weather_bg_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/5.2.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/5.2.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.gradle/5.2.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/5.2.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Sep 17 09:45:43 CST 2020 2 | gradle.version=5.2.1 3 | -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /.idea/libraries/Flutter_Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.idea/libraries/Flutter_Plugins.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/example_lib_main_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.idea/runConfigurations/example_lib_main_dart.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/CHANGELOG_ZH.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/README_ZH.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/flutter_weather_bg_example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/main/java/com/example/flutter_weather_bg_example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/ios/Runner/main.m -------------------------------------------------------------------------------- /example/lib/anim_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/lib/anim_view.dart -------------------------------------------------------------------------------- /example/lib/grid_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/lib/grid_view.dart -------------------------------------------------------------------------------- /example/lib/list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/lib/list_view.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/page_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/lib/page_view.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /flutter_weather_bg.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/flutter_weather_bg.iml -------------------------------------------------------------------------------- /images/cloud.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/images/cloud.webp -------------------------------------------------------------------------------- /images/lightning0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/images/lightning0.webp -------------------------------------------------------------------------------- /images/lightning1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/images/lightning1.webp -------------------------------------------------------------------------------- /images/lightning2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/images/lightning2.webp -------------------------------------------------------------------------------- /images/lightning3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/images/lightning3.webp -------------------------------------------------------------------------------- /images/lightning4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/images/lightning4.webp -------------------------------------------------------------------------------- /images/rain.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/images/rain.webp -------------------------------------------------------------------------------- /images/snow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/images/snow.webp -------------------------------------------------------------------------------- /images/sun.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/images/sun.webp -------------------------------------------------------------------------------- /lib/bg/weather_bg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/bg/weather_bg.dart -------------------------------------------------------------------------------- /lib/bg/weather_cloud_bg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/bg/weather_cloud_bg.dart -------------------------------------------------------------------------------- /lib/bg/weather_color_bg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/bg/weather_color_bg.dart -------------------------------------------------------------------------------- /lib/bg/weather_night_star_bg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/bg/weather_night_star_bg.dart -------------------------------------------------------------------------------- /lib/bg/weather_rain_snow_bg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/bg/weather_rain_snow_bg.dart -------------------------------------------------------------------------------- /lib/bg/weather_thunder_bg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/bg/weather_thunder_bg.dart -------------------------------------------------------------------------------- /lib/flutter_weather_bg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/flutter_weather_bg.dart -------------------------------------------------------------------------------- /lib/utils/image_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/utils/image_utils.dart -------------------------------------------------------------------------------- /lib/utils/print_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/utils/print_utils.dart -------------------------------------------------------------------------------- /lib/utils/weather_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/lib/utils/weather_type.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/flutter_weather_bg_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaweizi/flutter_weather_bg/HEAD/test/flutter_weather_bg_test.dart --------------------------------------------------------------------------------