Skip to content

Instantly share code, notes, and snippets.

@kwalrath
Created August 30, 2019 21:05
Show Gist options
  • Save kwalrath/578f5cade51b135cd75fcdcff82d227a to your computer and use it in GitHub Desktop.
Save kwalrath/578f5cade51b135cd75fcdcff82d227a to your computer and use it in GitHub Desktop.
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