Skip to content

Instantly share code, notes, and snippets.

@f3ath
Last active April 5, 2019 21:36
Show Gist options
  • Save f3ath/97206d1a38e06af65e7fc9e85d895a6a to your computer and use it in GitHub Desktop.
Save f3ath/97206d1a38e06af65e7fc9e85d895a6a to your computer and use it in GitHub Desktop.
import 'dart:async';
import 'package:rxdart/rxdart.dart';
void main() {
ZipStream([
Stream.fromIterable(<int>[1, 2, 3, 4, 5, 6, 7]),
Stream.periodic(Duration(seconds: 1))
], (_) => _.first).listen(print);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment