Skip to content

Instantly share code, notes, and snippets.

@Quingsley
Last active August 17, 2022 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Quingsley/eb390f051ca4e9741e55d97534ec6910 to your computer and use it in GitHub Desktop.
Save Quingsley/eb390f051ca4e9741e55d97534ec6910 to your computer and use it in GitHub Desktop.
more-streams
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>more-streams</title>
<link rel="stylesheet" href="styles.css">
<script type="application/dart" src="main.dart"></script>
</head>
<body>
<button>Click Me</button>
</body>
</html>
import 'dart:html';
void main(){
final btnElement = querySelector('button');
btnElement?.onClick.timeout(
Duration(seconds: 1),
onTimeout:(sink) => sink.addError('Too slow'),
).listen(
(event){},
onError:(err)=>print(err)
);
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
width: 100%;
height: 100%;
}
h1 {
color: white;
font-family: Arial, Helvetica, sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment