flet-build-template/{{cookiecutter.out_dir}}
Feodor Fitsner 895bbab788 remove classpath 'com.android.tools.build:gradle 2024-01-14 12:43:07 -08:00
..
android remove classpath 'com.android.tools.build:gradle 2024-01-14 12:43:07 -08:00
images Initial check-in 2023-12-27 16:06:54 -08:00
ios Initial check-in 2023-12-27 16:06:54 -08:00
lib Initial check-in 2023-12-27 16:06:54 -08:00
linux Initial check-in 2023-12-27 16:06:54 -08:00
macos Initial check-in 2023-12-27 16:06:54 -08:00
web python_module_name for web app 2023-12-27 16:19:40 -08:00
windows Initial check-in 2023-12-27 16:06:54 -08:00
.gitignore Initial check-in 2023-12-27 16:06:54 -08:00
.metadata Initial check-in 2023-12-27 16:06:54 -08:00
README.md Initial check-in 2023-12-27 16:06:54 -08:00
analysis_options.yaml Initial check-in 2023-12-27 16:06:54 -08:00
pubspec.yaml Flet 0.18.0 2023-12-30 11:58:23 -08:00

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 to assets/icon.png with alpha-channel automatically removed.
  • Android - assets/icon_android.png (or any supported image format). Recommended minimum image size is 192 px. Defaults to assets/icon.png.
  • Web - assets/icon_web.png (or any supported image format). Recommended minimum image size is 512 px. Defaults to assets/icon.png. If assets/favicon.png file is provided it will be used unmodified (copied to web/favicon.png).
  • Windows - assets/icon_windows.png (or any supported image format). ICO will be produced of 256 px size. Defaults to assets/icon.png. If assets/icon_windows.ico file is provided it will be just copied to windows/runner/resources/app_icon.ico unmodified.
  • macOS - assets/icon_macos.png (or any supported image format). Recommended minimum image size is 1024 px. Defaults to assets/icon.png.

Splash screens

  • iOS (light) - assets/splash_ios.png (or any supported image format). Defaults to assets/splash.png and then assets/icon.png.
  • iOS (dark) - assets/splash_dark_ios.png (or any supported image format). Defaults to light iOS splash, then to assets/splash_dark.png, then to assets/splash.png and then assets/icon.png.
  • Android (light) - assets/splash_android.png (or any supported image format). Defaults to assets/splash.png and then assets/icon.png.
  • Android (dark) - assets/splash_dark_android.png (or any supported image format). Defaults to light Android splash, then to assets/splash_dark.png, then to assets/splash.png and then assets/icon.png.
  • Web (light) - assets/splash_web.png (or any supported image format). Defaults to assets/splash.png and then assets/icon.png.
  • Web (dark) - assets/splash_dark_web.png (or any supported image format). Defaults to light web splash, then assets/splash_dark.png, then to assets/splash.png and then assets/icon.png.