flconf 1.0.0
flconf: ^1.0.0 copied to clipboard
A CLI tool to help run flutter app from config file
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate flconfUse it
The package has the following executables:
$ flconf
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add flconfThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
flconf: ^1.0.0Alternatively, your editor might support dart pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:flconf/commands/build.dart';
import 'package:flconf/commands/drive.dart';
import 'package:flconf/commands/generate.dart';
import 'package:flconf/commands/help.dart';
import 'package:flconf/commands/init.dart';
import 'package:flconf/commands/run.dart';
import 'package:flconf/helpers/example_generated_file.dart';
import 'package:flconf/helpers/formatVariableName.dart';
import 'package:flconf/helpers/getDartDefines.dart';
import 'package:flconf/helpers/logger.dart';