* Use relative socket paths instead of absolute paths
Replaced usage of absolute paths with relative socket file names for Unix domain sockets. This change simplifies socket file handling and may improve compatibility across different environments.
* Update temp directory usage for socket paths
Replaced getApplicationCacheDirectory with getTemporaryDirectory for app temp path. Updated socket file paths to use the correct temp directory, ensuring consistency and proper file placement across platforms.
* Revert "Update temp directory usage for socket paths"
This reverts commit
|
||
|---|---|---|
| .. | ||
| 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.