zip
Build your Flutter app as a ZIP archive — a universal compression format that works across all platforms. The ZIP format is useful for distributing your application as a portable archive that users can extract and run without an installer.
Requirements
7z(p7zip) — a file archiver with high compression ratiomacOS:
bashbrew install p7zipUbuntu/Debian:
bashsudo apt install p7zip-fullFedora:
bashsudo dnf install p7zip
Usage
Run:
fastforge package --platform linux --targets zipThe output ZIP archive will contain the compiled application and its dependencies, ready for extraction and use.
