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

Library to create CLI Wizards

example/main.dart

import 'package:prompter_rt/prompter_rt.dart';

void main() {
  var options = [
    new Options('I want the color red', '#f00'),
    new Options('I want the color blue', '#00f')
  ];
  final prompter = Prompter();
  String colorCode = prompter.askMultiple('Select an Option', options);
  bool answer = prompter.askBinary('Do you Like this Library');
  print(colorCode);
  print(answer);
}
0
likes
50
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_rt