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

Library to create CLI wizards

example/main.dart

import 'package:promptosaurus/promptosaurus.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('Please select a color', options);
  bool answer = prompter.askBinary('Do you like this library');

  print(colorCode);
  print(answer);
}
0
likes
35
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 promptosaurus