prompter_allexradu 0.0.2 copy "prompter_allexradu: ^0.0.2" to clipboard
prompter_allexradu: ^0.0.2 copied to clipboard

Library to create CLI wizzards

example/main.dart

import 'package:prompter_allexradu/prompter_allexradu.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('Select a color', options);

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

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

Publisher

unverified uploader

Library to create CLI wizzards

Homepage

License

unknown (LICENSE)

More

Packages that depend on prompter_allexradu