Skip to content

Instantly share code, notes, and snippets.

@pdslly
Created October 24, 2019 06:07
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 pdslly/de9a08e094c83e52475dbd7fcd395883 to your computer and use it in GitHub Desktop.
Save pdslly/de9a08e094c83e52475dbd7fcd395883 to your computer and use it in GitHub Desktop.
dart_futures
RaisedButton(
onPressed: () {
final myFuture = http.get('https://my.image.url');
myFuture.then((resp) {
setImage(resp);
});
},
child: Text('Click me!'),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment