* Update flet dependency to use 'sensors' branch Changed the flet package override to reference the 'sensors' branch instead of 'main'. This may be to incorporate new features or fixes related to sensors from the upstream repository. * Update and clean up dependencies in pubspec.yaml Removed 'url_strategy' dependency, updated 'package_info_plus' and 'window_manager' to newer versions, and added 'sensors_plus'. This keeps dependencies current and removes unused packages. * Add url_strategy dependency to pubspec.yaml Included the url_strategy package version 0.2.0 to the dependencies for improved URL handling in the project. * Update sensors_plus to version 7.0.0 Bumped sensors_plus dependency from 6.1.1 to 7.0.0 in pubspec.yaml to use the latest features and fixes. * Add screen_brightness dependency and update flet ref Added the screen_brightness package to dependencies and updated the flet dependency override to use the sensors-brightness branch. This enables brightness control functionality and ensures compatibility with the latest flet features. * Update flet dependency override to 'sensors' ref Changed the flet package git reference from 'sensors-brightness' to 'sensors' in pubspec.yaml to use the updated branch. * Add wakelock_plus dependency Added wakelock_plus version 1.4.0 to pubspec.yaml to enable wakelock functionality in the project. * Remove wakelock_plus and window_manager dependencies The wakelock_plus and window_manager dependencies have been removed from pubspec.yaml, possibly due to no longer being required in the project. * Remove url_strategy dependency from pubspec.yaml The url_strategy package has been removed from the dependencies list, possibly because it is no longer needed or used in the project. * Update url_strategy import and add flutter_web_plugins Replaced the url_strategy import with flutter_web_plugins/url_strategy in main.dart and added flutter_web_plugins to pubspec.yaml dependencies to ensure compatibility and proper URL strategy support. * Replace setPathUrlStrategy with usePathUrlStrategy Updated the URL strategy function call to usePathUrlStrategy for web routing. This change ensures compatibility with the latest API and improves route handling. * Add wakelock_plus to dependency overrides Added wakelock_plus version 1.4.0 to the dependency_overrides section in pubspec.yaml to enable wakelock functionality in the project. * Add file_picker dependency to pubspec.yaml Included the file_picker package (version ^10.3.3) in dependencies to enable file selection functionality in the project. * Add new dependencies to pubspec.yaml Added device_info_plus, shared_preferences, and url_launcher to the dependencies. Reordered some existing dependencies for consistency. * Add battery_plus dependency to pubspec.yaml Included battery_plus version ^6.2.2 in dependencies to enable battery information features in the project. * Add connectivity_plus dependency to pubspec.yaml Added the connectivity_plus package (version ^6.1.2) to the dependencies for network connectivity features. * Add share_plus dependency to pubspec.yaml Included the share_plus package (version ^12.0.1) in dependencies to enable sharing functionality within the project. * Update Flutter plugin dependencies to latest versions Upgraded battery_plus, connectivity_plus, device_info_plus, and screen_brightness to their latest compatible versions in pubspec.yaml to ensure compatibility and access to new features and bug fixes. * Update flet dependency to use main branch Changed the flet dependency override from the 'sensors' branch to the 'main' branch in pubspec.yaml to ensure the latest stable code is used. |
||
|---|---|---|
| .. | ||
| android | ||
| images | ||
| ios | ||
| lib | ||
| linux | ||
| macos | ||
| web | ||
| windows | ||
| .gitignore | ||
| .metadata | ||
| .vars | ||
| README.md | ||
| analysis_options.yaml | ||
| pubspec.yaml | ||
README.md
{{ cookiecutter.product_name }}
{{ cookiecutter.project_description }}
Template variables
{{ cookiecutter.project_name }}- project name - lowercase, no spaces, i.e. "snake_case" identifier - used as a package name, iOS/macOS/Android bundle name and Windows/Linux executable file name.{{ cookiecutter.project_description }}- project description.{{ cookiecutter.product_name }}- project display name that is shown in window titles and about app dialogs.{{ cookiecutter.org_name }}- org name in reverse domain name notation, e.g.com.mycompany.myproject.{{ cookiecutter.company_name }}- the name of the company.{{ cookiecutter.copyright }}- the name of the company.
Icons
- iOS -
assets/icon_ios.png(or any supported image format). Recommended minimum image size is 1024 px. Image should not be transparent (have alpha channel). Defaults toassets/icon.pngwith alpha-channel automatically removed. - Android -
assets/icon_android.png(or any supported image format). Recommended minimum image size is 192 px. Defaults toassets/icon.png. - Web -
assets/icon_web.png(or any supported image format). Recommended minimum image size is 512 px. Defaults toassets/icon.png. Ifassets/favicon.pngfile is provided it will be used unmodified (copied toweb/favicon.png). - Windows -
assets/icon_windows.png(or any supported image format). ICO will be produced of 256 px size. Defaults toassets/icon.png. Ifassets/icon_windows.icofile is provided it will be just copied towindows/runner/resources/app_icon.icounmodified. - macOS -
assets/icon_macos.png(or any supported image format). Recommended minimum image size is 1024 px. Defaults toassets/icon.png.
Splash screens
- iOS (light) -
assets/splash_ios.png(or any supported image format). Defaults toassets/splash.pngand thenassets/icon.png. - iOS (dark) -
assets/splash_dark_ios.png(or any supported image format). Defaults to light iOS splash, then toassets/splash_dark.png, then toassets/splash.pngand thenassets/icon.png. - Android (light) -
assets/splash_android.png(or any supported image format). Defaults toassets/splash.pngand thenassets/icon.png. - Android (dark) -
assets/splash_dark_android.png(or any supported image format). Defaults to light Android splash, then toassets/splash_dark.png, then toassets/splash.pngand thenassets/icon.png. - Web (light) -
assets/splash_web.png(or any supported image format). Defaults toassets/splash.pngand thenassets/icon.png. - Web (dark) -
assets/splash_dark_web.png(or any supported image format). Defaults to light web splash, thenassets/splash_dark.png, then toassets/splash.pngand thenassets/icon.png.