udara_cli 1.0.1
udara_cli: ^1.0.1 copied to clipboard
A CLI tool for managing whitelabel Flutter projects with multi-client support
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate udara_cliUse it
The package has the following executables:
$ udara_cli
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add udara_cliWith Flutter:
$ flutter pub add udara_cliThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
udara_cli: ^1.0.1Alternatively, 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:udara_cli/build.dart';
import 'package:udara_cli/clean.dart';
import 'package:udara_cli/config.dart';
import 'package:udara_cli/core/core.dart';
import 'package:udara_cli/core/exceptions.dart';
import 'package:udara_cli/core/helper.dart';
import 'package:udara_cli/core/models/config_result.dart';
import 'package:udara_cli/core/models/splash_config_result.dart';
import 'package:udara_cli/core/services/config_service.dart';
import 'package:udara_cli/core/services/slack_service.dart';
import 'package:udara_cli/core/services/white_label_service.dart';
import 'package:udara_cli/core/udara_command.dart';
import 'package:udara_cli/list_clients.dart';
import 'package:udara_cli/scripts.dart';
import 'package:udara_cli/set_up.dart';
import 'package:udara_cli/slack_test.dart';
import 'package:udara_cli/white_label.dart';