quee_cli 1.0.1
quee_cli: ^1.0.1 copied to clipboard
A command line interface for quee package that provides basic argument parsing.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate quee_cli
Use it
The package has the following executables:
$ quee
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add quee_cli
With Flutter:
$ flutter pub add quee_cli
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
quee_cli: ^1.0.1
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:quee_cli/controller_generator.dart';
import 'package:quee_cli/core/file_generator.dart';
import 'package:quee_cli/core/model_helper.dart';
import 'package:quee_cli/core/project_generator.dart';
import 'package:quee_cli/core/quee_cli_config.dart';
import 'package:quee_cli/core/terminal.dart';
import 'package:quee_cli/helper/code_helper.dart';
import 'package:quee_cli/helper/file_helper.dart';
import 'package:quee_cli/helper/name_helper.dart';
import 'package:quee_cli/helper/validation_helper.dart';
import 'package:quee_cli/model_generator.dart';
import 'package:quee_cli/page_generator.dart';
import 'package:quee_cli/quee.dart';
import 'package:quee_cli/route_generator.dart';
import 'package:quee_cli/service_generator.dart';
import 'package:quee_cli/widget_generator.dart';