prompter_vj2 0.0.2
prompter_vj2: ^0.0.2 copied to clipboard
Library to create CLI wizards
example/main.dart
import 'package:prompter_vj2/prompter_vj2.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);
}