stream_duration 3.1.0 copy "stream_duration: ^3.1.0" to clipboard
stream_duration: ^3.1.0 copied to clipboard

A dart package for stream duration, support countdown, countup, and countup infinity.

example/example.dart

import 'package:stream_duration/stream_duration.dart';

void main() {
  /// Countdown
  var streamDuration = StreamDuration(
    const Duration(seconds: 5),
    onDone: () {
      print('Stream Done 👍');
    },
  );

  streamDuration.change(const Duration(seconds: 10));

  streamDuration.durationLeft.listen((duration) {
    print('Duration $duration');
  });

  // /// Countup
  // var streamDurationUp = StreamDuration(Duration(seconds: 10), onDone: () {
  //   print('Stream Done 👍');
  // }, countUp: true);

  // streamDurationUp.durationLeft.listen((event) {
  //   print(event.inSeconds);
  // });

  // /// Countup Infinity
  // var streamDurationUpInfinity =
  //     StreamDuration(Duration(seconds: 10), countUp: true, infinity: true);

  // streamDurationUpInfinity.durationLeft.listen((event) {
  //   print(event.inSeconds);
  // });
}
9
likes
0
points
5.67k
downloads

Publisher

verified publisherfarhanfadila.site

Weekly Downloads

A dart package for stream duration, support countdown, countup, and countup infinity.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on stream_duration