interact 2.0.0 interact: ^2.0.0 copied to clipboard
A collection of customizable interactive command-line components.
import 'dart:io' show stdout;
void main() {
stdout.writeAll([
'All the examples are available in their specific files in this directory!',
'For example, run `dart example/select.dart` to see an example of a Select component.',
'',
'- Frenco',
'',
], '\n');
}