* Update flet dependency to routing-fix branch Changed the flet dependency override to use the 'routing-fix' branch instead of 'main' for testing or applying routing-related fixes. * Add hideWindowOnStart option to app startup Introduces a new hideWindowOnStart configuration option, allowing the app window to be hidden on startup based on project settings. Passes this option to setupDesktop for improved control over window visibility during launch. * Remove unused setupDesktop function Deleted the setupDesktop function from main.dart as it is no longer used. This helps clean up the codebase and removes unnecessary platform-specific initialization logic. * Update serious_python and flet dependencies Bump serious_python to version 0.9.7 and update flet dependency override to use the main branch. Also comment out the serious_python git override. * Enable serious_python with updated git reference Uncommented the serious_python dependency and updated its git reference to use the 'android-logging-fix' branch. This change ensures the project uses the latest fixes from the serious_python repository. * Update flet dependency to video-crash-fix branch Changed the flet dependency override to use the 'video-crash-fix' branch instead of 'main' to address video-related issues. * Update flet dependency to use main branch Changed the flet dependency override from the 'video-crash-fix' branch to the 'main' branch in pubspec.yaml. This ensures the project uses the latest stable code from the main branch. * Update serious_python to version 0.9.8 Bump serious_python dependency from 0.9.7 to 0.9.8 and comment out the git override for serious_python in pubspec.yaml. |
||
|---|---|---|
| .. | ||
| 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.