Skip to content

Instantly share code, notes, and snippets.

@kwalrath
Last active July 17, 2019 00:21
Show Gist options
  • Save kwalrath/d280cf4a971fac630b43d74808368170 to your computer and use it in GitHub Desktop.
Save kwalrath/d280cf4a971fac630b43d74808368170 to your computer and use it in GitHub Desktop.
event loop example
RaisedButton(
child: Text('Click me'),
onPressed: () {
final myFuture = http.get('https://example.com');
myFuture.then((response) {
if (response.statusCode == 200) {
print('Success!');
}
});
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment