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

Library to create CLI for Wizards

example/main.dart

import 'package:prompter_ndf/prompter_ndf.dart';

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

  final prompter = new Prompter();
  String colorCode = prompter.askMultiple('What is your favorate color?', options);
  bool answer = prompter.askBinary('Do you like this Library?');

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

Publisher

unverified uploader

Library to create CLI for Wizards

Homepage

License

unknown (LICENSE)

More

Packages that depend on prompter_ndf