console_bars 1.0.0 console_bars: ^1.0.0 copied to clipboard
A starting point for Dart libraries or applications.
A package for creating awesome progress bars and loading animations in console.
Usage #
Code:
final p = FillingBar(desc: "Loading", total: 1000, time: true, percentage:true);
for (var i = 0; i < 1000; i++) {
p.increment();
sleep(Duration(milliseconds: 10));
}
Result:
Loading : ████████████████████████████████████████.................... 673/1000 67.3% [ 0:00:13.28 / 0:00:06.45 ]