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

Library to create CLI Wizards

example/main.dart

import 'package:prompter_rrm/prompter_rrm.dart';

void main(){

  final options = [
    new Option('I want Red', '#f00'),
    new Option('I want Blue', '#00f')
  ];

  final prompter = new Prompter();
  
  String colourCode = prompter.askMultiple('Select a colour', options);

  bool answer = prompter.askBinary('Do you like this lib?');

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

Publisher

unverified uploader

Library to create CLI Wizards

Homepage

License

unknown (LICENSE)

More

Packages that depend on prompter_rrm