progress_bar 0.1.0 copy "progress_bar: ^0.1.0" to clipboard
progress_bar: ^0.1.0 copied to clipboard

outdatedDart 1 only

Progress bar for dart command-line apps. A port of node-progress to Dart.

progress_bar #

Progress bar for dart command-line apps. A port of node-progress to Dart.

Usage #

Basic usage:

var bar = new ProgressBar(' [:bar] :percent :etas ', {'total': 10});
var timer = new Timer.periodic(new Duration(seconds: 1), (Timer timer) {
  bar.tick();
  if (bar.complete) {
    timer.cancel();
  }
});

basic

Features and bugs #

Please file feature requests and bugs at the issue tracker.

4
likes
0
pub points
64%
popularity

Publisher

unverified uploader

Progress bar for dart command-line apps. A port of node-progress to Dart.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on progress_bar