https://github.com/kjxbyz/flutter_packager
A complete tool for packaging your Flutter apps.
https://github.com/kjxbyz/flutter_packager
cli dart dart-cli flutter packaging tools
Last synced: 2 months ago
JSON representation
A complete tool for packaging your Flutter apps.
- Host: GitHub
- URL: https://github.com/kjxbyz/flutter_packager
- Owner: kjxbyz
- License: mit
- Created: 2024-07-22T03:08:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-03T09:36:06.000Z (over 1 year ago)
- Last Synced: 2026-03-24T15:54:20.573Z (3 months ago)
- Topics: cli, dart, dart-cli, flutter, packaging, tools
- Language: Dart
- Homepage: https://pub.dev/packages/flutter_packager
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_packager
[![pub version][pub-image]][pub-url]
[![License: MIT][license_badge]][license_link]
> A complete tool for packaging your Flutter apps.
## Getting Started ๐
If the CLI application is available on [pub](https://pub.dev), activate globally via:
```sh
dart pub global activate flutter_packager
```
Or locally via:
```sh
dart pub global activate --source=path
```
## Usage
```sh
# Sample command
$ main sample
# Sample command option
$ main sample --cyan
# Show CLI version
$ main --version
# Show usage help
$ main --help
```
## Running Tests with coverage ๐งช
To run all unit tests use the following command:
```sh
dart pub global activate coverage 1.2.0
dart test --coverage=coverage
dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info
```
To view the generated coverage report you can use [lcov](https://github.com/linux-test-project/lcov)
.
```sh
# Generate Coverage Report
$ genhtml coverage/lcov.info -o coverage/
# Open Coverage Report
$ open coverage/index.html
```
---
[pub-image]: https://img.shields.io/pub/v/flutter_packager.svg?style=flat-square
[pub-url]: https://pub.dev/packages/flutter_packager
[license_badge]: https://img.shields.io/badge/license-MIT-blue.svg
[license_link]: https://github.com/kjxbyz/flutter_packager/blob/main/LICENSE