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

Library to create simple CLI wizards

example/main.dart

import 'package:prompter_gk/prompter_gk.dart';

void main() {
  final List<Option> options = [Option('Red', '#f00'), Option('Blue', '#00f')];

  Prompter prompter = Prompter();

  String colourCode = prompter.askMultiple('Select a colour', options);
  print('Received colour : $colourCode');

  bool answer = prompter.askBinary('Do you like this library');
  print('Your answer : $answer');
}
0
likes
10
pub points
0%
popularity

Publisher

unverified uploader

Library to create simple CLI wizards

Homepage

License

unknown (LICENSE)

More

Packages that depend on prompter_gk