cli_menu 0.0.1 cli_menu: ^0.0.1 copied to clipboard
A simple menu (picker) that works on the command line.
import 'package:cli_menu/cli_menu.dart';
void main() {
final menu = new Menu(["Red", "Green", "Orange"]);
final result = menu.choose();
print('Chosen: $result');
}