Skip to content

Instantly share code, notes, and snippets.

@GitLeandroHub
Created September 23, 2020 00:55
Show Gist options
  • Save GitLeandroHub/401544e8110d44b680046f6c39f6fd62 to your computer and use it in GitHub Desktop.
Save GitLeandroHub/401544e8110d44b680046f6c39f6fd62 to your computer and use it in GitHub Desktop.
import 'dart:html';
void main() {
final ButtonElement button = querySelector('button');
final InputElement input = querySelector('input');
button.onClick
.take(4)
.where((event) => input.value == 'banana')
.listen(
(event) => print('You got it!'),
onDone: () => print('Nope bad guesses.')
);
}
<h4>Guess the word</h4>
<input />
<button>Guess</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment