prompter_crh 1.0.0 copy "prompter_crh: ^1.0.0" to clipboard
prompter_crh: ^1.0.0 copied to clipboard

Library to create CLI wizards

example/main.dart

import 'package:prompter_crh/prompter_crh.dart';

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

  final prompter = Prompter();

  String colorCode = prompter.askMultiple('Select a color', options);

  bool answer = prompter.askBinary('Do you like this lib?');

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

Publisher

unverified uploader

Library to create CLI wizards

Homepage

License

unknown (LICENSE)

More

Packages that depend on prompter_crh