tqdm 1.0.0 tqdm: ^1.0.0 copied to clipboard
A Dart port of the Python tqdm library.
tqdm #
A Dart port of the Python tqdm library.
Usage #
import 'package:tqdm/tqdm.dart';
void main() async {
final list = List.generate(100, (i) => i);
for (final _ in Tqdm(list, title: 'Example')) {
await Future.delayed(Duration(milliseconds: 100));
}
}
$ dart a.dart
Example 59%|███████████████▍ | 59/100 [00:06<00:04, 9.09it/s]