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

discontinued

Library to create CLI wizards

example/main.dart

import 'package:prompter_elhe/prompter_elhe.dart';

void main(List<String> args) {
  List<Option> options = [
    Option(label: "I want red", value: "#f00"),
    Option(label: "I want blue", value: "#00f")
  ];

  var prompter = Prompter();

  String colorCode = prompter.askMultiple(
    prompt: "Select a color",
    options: options,
  );

  bool answer = prompter.askBinary(prompt: "Do you like this lib?");

  print(colorCode);
  print(answer);
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

Library to create CLI wizards

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on prompter_elhe