prompter_vj 0.0.1
prompter_vj: ^0.0.1 copied to clipboard
Library to create CLI wizards
example/main.dart
import 'package:prompter_vj/prompter_vj.dart';
void main() {
final options = [
new Option('I want red', '#f00'),
new Option('I want blue', '#00f')
];
final prompter = new Prompter();
String colorCode =
prompter.askMultiple('Choose your favourite colour', options);
bool answer = prompter.askBinary('Do you like this lib?');
print(colorCode);
print(answer);
}