├── .env.example ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── nightly.yaml ├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── dev │ │ │ │ └── krtirtho │ │ │ │ └── wallywiz │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── logo.png ├── logo.svg ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png └── screenshot-4.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 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 │ └── Runner-Bridging-Header.h ├── lib ├── api │ └── api.dart ├── collections │ ├── ad_ids.dart │ ├── env.dart │ ├── min_max.dart │ └── routes.dart ├── components │ ├── CreateWallpaperProvider │ │ ├── CreateWallpaperProviderView.dart │ │ ├── HeaderDialog.dart │ │ └── JsonPropertyPicker.dart │ ├── WallpaperSupplierView │ │ └── WallpaperSupplierView.dart │ ├── home │ │ └── CategoryCard.dart │ ├── settings │ │ └── SettingsTile.dart │ ├── shared │ │ ├── MarqueeText.dart │ │ ├── UnitDurationPickerDialog.dart │ │ ├── WallpaperCarousel.dart │ │ ├── WallpaperCarouselItem.dart │ │ ├── WallpaperForm.dart │ │ ├── page_window_title_bar.dart │ │ └── waypoint.dart │ └── shell │ │ └── custom_adaptive_scaffold.dart ├── extensions │ ├── constrains.dart │ ├── duration.dart │ ├── list.dart │ └── map.dart ├── helpers │ ├── PersistedChangeNotifier.dart │ └── toCapitalCase.dart ├── hooks │ ├── useBannerAd.dart │ ├── useCustomStatusBarColor.dart │ ├── useInterstitialAd.dart │ ├── useJsonUrlFilter.dart │ ├── useMultiBannerAds.dart │ ├── usePaletteGenerator.dart │ └── useWindowListeners.dart ├── main.dart ├── models │ ├── ConfigurationSchema.dart │ ├── WallpaperSource.dart │ ├── category.dart │ ├── category.g.dart │ ├── wallpaper.dart │ └── wallpaper.g.dart ├── pages │ ├── categories │ │ └── category │ │ │ └── wallpaper.dart │ ├── home.dart │ ├── latest.dart │ ├── settings.dart │ ├── shell.dart │ └── trending.dart ├── providers │ ├── futures.dart │ ├── preferences.dart │ ├── shuffler.dart │ └── wallpaper-provider.dart ├── services │ ├── api_client.dart │ ├── periodic_task.dart │ ├── queries.dart │ └── wallpaper.dart └── utils │ ├── NumericalRangeFormatter.dart │ ├── clean-title.dart │ ├── logger.dart │ ├── persisted_state_notifier.dart │ └── platform.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc ├── my_application.h └── packaging │ └── deb │ └── make_config.yaml ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/nightly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/.github/workflows/nightly.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/dev/krtirtho/wallywiz/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/kotlin/dev/krtirtho/wallywiz/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/assets/screenshot-2.png -------------------------------------------------------------------------------- /assets/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/assets/screenshot-3.png -------------------------------------------------------------------------------- /assets/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/assets/screenshot-4.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/api/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/api/api.dart -------------------------------------------------------------------------------- /lib/collections/ad_ids.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/collections/ad_ids.dart -------------------------------------------------------------------------------- /lib/collections/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/collections/env.dart -------------------------------------------------------------------------------- /lib/collections/min_max.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/collections/min_max.dart -------------------------------------------------------------------------------- /lib/collections/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/collections/routes.dart -------------------------------------------------------------------------------- /lib/components/CreateWallpaperProvider/CreateWallpaperProviderView.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/CreateWallpaperProvider/CreateWallpaperProviderView.dart -------------------------------------------------------------------------------- /lib/components/CreateWallpaperProvider/HeaderDialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/CreateWallpaperProvider/HeaderDialog.dart -------------------------------------------------------------------------------- /lib/components/CreateWallpaperProvider/JsonPropertyPicker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/CreateWallpaperProvider/JsonPropertyPicker.dart -------------------------------------------------------------------------------- /lib/components/WallpaperSupplierView/WallpaperSupplierView.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/WallpaperSupplierView/WallpaperSupplierView.dart -------------------------------------------------------------------------------- /lib/components/home/CategoryCard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/home/CategoryCard.dart -------------------------------------------------------------------------------- /lib/components/settings/SettingsTile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/settings/SettingsTile.dart -------------------------------------------------------------------------------- /lib/components/shared/MarqueeText.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/shared/MarqueeText.dart -------------------------------------------------------------------------------- /lib/components/shared/UnitDurationPickerDialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/shared/UnitDurationPickerDialog.dart -------------------------------------------------------------------------------- /lib/components/shared/WallpaperCarousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/shared/WallpaperCarousel.dart -------------------------------------------------------------------------------- /lib/components/shared/WallpaperCarouselItem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/shared/WallpaperCarouselItem.dart -------------------------------------------------------------------------------- /lib/components/shared/WallpaperForm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/shared/WallpaperForm.dart -------------------------------------------------------------------------------- /lib/components/shared/page_window_title_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/shared/page_window_title_bar.dart -------------------------------------------------------------------------------- /lib/components/shared/waypoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/shared/waypoint.dart -------------------------------------------------------------------------------- /lib/components/shell/custom_adaptive_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/components/shell/custom_adaptive_scaffold.dart -------------------------------------------------------------------------------- /lib/extensions/constrains.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/extensions/constrains.dart -------------------------------------------------------------------------------- /lib/extensions/duration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/extensions/duration.dart -------------------------------------------------------------------------------- /lib/extensions/list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/extensions/list.dart -------------------------------------------------------------------------------- /lib/extensions/map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/extensions/map.dart -------------------------------------------------------------------------------- /lib/helpers/PersistedChangeNotifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/helpers/PersistedChangeNotifier.dart -------------------------------------------------------------------------------- /lib/helpers/toCapitalCase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/helpers/toCapitalCase.dart -------------------------------------------------------------------------------- /lib/hooks/useBannerAd.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/hooks/useBannerAd.dart -------------------------------------------------------------------------------- /lib/hooks/useCustomStatusBarColor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/hooks/useCustomStatusBarColor.dart -------------------------------------------------------------------------------- /lib/hooks/useInterstitialAd.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/hooks/useInterstitialAd.dart -------------------------------------------------------------------------------- /lib/hooks/useJsonUrlFilter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/hooks/useJsonUrlFilter.dart -------------------------------------------------------------------------------- /lib/hooks/useMultiBannerAds.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/hooks/useMultiBannerAds.dart -------------------------------------------------------------------------------- /lib/hooks/usePaletteGenerator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/hooks/usePaletteGenerator.dart -------------------------------------------------------------------------------- /lib/hooks/useWindowListeners.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/hooks/useWindowListeners.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/ConfigurationSchema.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/models/ConfigurationSchema.dart -------------------------------------------------------------------------------- /lib/models/WallpaperSource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/models/WallpaperSource.dart -------------------------------------------------------------------------------- /lib/models/category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/models/category.dart -------------------------------------------------------------------------------- /lib/models/category.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/models/category.g.dart -------------------------------------------------------------------------------- /lib/models/wallpaper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/models/wallpaper.dart -------------------------------------------------------------------------------- /lib/models/wallpaper.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/models/wallpaper.g.dart -------------------------------------------------------------------------------- /lib/pages/categories/category/wallpaper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/pages/categories/category/wallpaper.dart -------------------------------------------------------------------------------- /lib/pages/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/pages/home.dart -------------------------------------------------------------------------------- /lib/pages/latest.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/pages/latest.dart -------------------------------------------------------------------------------- /lib/pages/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/pages/settings.dart -------------------------------------------------------------------------------- /lib/pages/shell.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/pages/shell.dart -------------------------------------------------------------------------------- /lib/pages/trending.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/pages/trending.dart -------------------------------------------------------------------------------- /lib/providers/futures.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/providers/futures.dart -------------------------------------------------------------------------------- /lib/providers/preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/providers/preferences.dart -------------------------------------------------------------------------------- /lib/providers/shuffler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/providers/shuffler.dart -------------------------------------------------------------------------------- /lib/providers/wallpaper-provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/providers/wallpaper-provider.dart -------------------------------------------------------------------------------- /lib/services/api_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/services/api_client.dart -------------------------------------------------------------------------------- /lib/services/periodic_task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/services/periodic_task.dart -------------------------------------------------------------------------------- /lib/services/queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/services/queries.dart -------------------------------------------------------------------------------- /lib/services/wallpaper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/services/wallpaper.dart -------------------------------------------------------------------------------- /lib/utils/NumericalRangeFormatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/utils/NumericalRangeFormatter.dart -------------------------------------------------------------------------------- /lib/utils/clean-title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/utils/clean-title.dart -------------------------------------------------------------------------------- /lib/utils/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/utils/logger.dart -------------------------------------------------------------------------------- /lib/utils/persisted_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/utils/persisted_state_notifier.dart -------------------------------------------------------------------------------- /lib/utils/platform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/lib/utils/platform.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /linux/packaging/deb/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/linux/packaging/deb/make_config.yaml -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/wallywiz/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------