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

Library to create CLI wizards

example/main.dart

import 'package:prompter_bearcola/prompter_bearcola.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);
//  var prompter = Prompter();
//  prompter.ask('What color do you want', options);


  /*
  terminal.clearScreen();
  terminal.printPrompt('Hi there!');
  var input = terminal.collectInput();
  print('You just entered: $input');
   */
}
0
likes
10
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_bearcola