Skip to content

Instantly share code, notes, and snippets.

@timsneath
Last active April 6, 2018 15:57
Show Gist options
  • Save timsneath/c250b76c0d8be2fbb604f6f5e314e57b to your computer and use it in GitHub Desktop.
Save timsneath/c250b76c0d8be2fbb604f6f5e314e57b to your computer and use it in GitHub Desktop.
Example of using the Flutter share package
import 'package:share/share.dart';
...
shareAction() {
if (displayedJoke != '') {
share(displayedJoke);
}
}
...
new IconButton(
icon: new Icon(Icons.share),
tooltip: 'Share joke',
onPressed: shareAction,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment