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

Library to create CLI projects

example/main.dart

import 'package:prompter_gt/prompter_gt.dart';

void main() {
  final List<Option> options = [
    Option('I want red', '#f00'),
    Option('I want blue', '#00f')
  ];

  final prompter = Prompter();
  String colorCode =
      prompter.askMultiple('Which is your favorite color?', options);

  bool answer = prompter.askBinary('Are you human?');

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

Publisher

unverified uploader

Library to create CLI projects

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on prompter_gt