lentil 0.0.3 copy "lentil: ^0.0.3" to clipboard
lentil: ^0.0.3 copied to clipboard

Library to create CLI wizards

Lentil #

Your dart CLI wizard.

[Dart Cli Example]

Getting Started #

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

  1. Clone repo
  2. Run pub get
  3. Execute main.dart in the example directory.
import 'package:lentil/lentil.dart';

void main() {
  final options = [
    new Option('I want red', '#f00'),
    new Option('I want blue', '#00f'),
  ];
  final prompter = new Prompter();

  final String colorCode =
      prompter.askMultiple("What color do you like", options);
  final bool isCakeLover = prompter.askBinary("Do you like cake?");

  print(colorCode);
  print(isCakeLover);
}

Built With #

0
likes
15
points
19
downloads

Publisher

unverified uploader

Weekly Downloads

Library to create CLI wizards

Homepage

License

unknown (license)

More

Packages that depend on lentil