prompter_rrrr 0.0.1 copy "prompter_rrrr: ^0.0.1" to clipboard
prompter_rrrr: ^0.0.1 copied to clipboard

Library to create CLI wizards

example/main.dart

import 'package:prompter_rrrr/prompter_rrrr.dart';

void main(){
  //terminal.printPrompt('Hi thereeee');
  //String input = terminal.collectInput();
  //print('$input');

  var options = [
    new Option('Red', '#f00'),
    new Option('Blue', '#00f')
  ];

  final prompter = new Prompter();
  String colorCode = prompter.askMultiple("Select a color", options);
  bool answer = prompter.askBinary('Do you like this lib?');

  print(colorCode);
  print(answer);



  // var prompter = new Prompter();
  // prompter.ask('What color?', options);

  // terminal.printOption(options);
  // var response = terminal.collectInput();
  // print('$response');
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

Library to create CLI wizards

Homepage

License

unknown (LICENSE)

More

Packages that depend on prompter_rrrr