tqdm 1.0.2 copy "tqdm: ^1.0.2" to clipboard
tqdm: ^1.0.2 copied to clipboard

A Dart progress bar package inspired by Python's tqdm.

tqdm #

A Dart progress bar package inspired by Python's tqdm.

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]
0
likes
130
points
44
downloads

Publisher

verified publisheryuki0311.com

Weekly Downloads

A Dart progress bar package inspired by Python's tqdm.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

More

Packages that depend on tqdm