onepub-dev / dcli

An extensive library and tooling for building console/cli applications and scripts using the Dart programming language.
245 stars 28 forks source link

[Proposal] add multi pick menu #187

Closed cedvdb closed 2 years ago

cedvdb commented 2 years ago

This is a proposal for a multi pick menu. The firebase cli does it well, where you can use arrow keys and space to pick your options and enter to pick one.

I took a look at the menu implementation but it is still a bit unclear to me how to:

bsutton commented 2 years ago

Dcli includes the dart_console package that support handling key presses.

bsutton commented 2 years ago

The cli_menu package might have what you want:

https://pub.dev/packages/cli_menu

cedvdb commented 2 years ago

cli_menu is not a multiselect but this one seems to have one:

https://pub.dev/packages/interact

which has a wide range of good looking command line "menus"