slug 1.0.0 slug: ^1.0.0 copied to clipboard
Terminal Spinners
SLUG 🐌
Terminal progress with different spinners.
Install #
dart pub add slug
Usage #
var slug = Slug(
slugStyle: SlugStyle.toggle7,
);
var slug1 = Slug(
slugStyle: SlugStyle.noise,
);
var progress = slug.progress('doing some work');
await Future.delayed(Duration(seconds: 2));
progress.finish(message: "Completed!");
progress = slug1.progress('doing some work');
await Future.delayed(Duration(seconds: 2));
progress.finish(showTiming: true, message: "Completed!");
Inspired from Ora and cli_util. Thank you sindresorhus for the amazing collection of spinners.