Skip to content

Instantly share code, notes, and snippets.

@lawreyios
Created January 9, 2019 02:01
Show Gist options
  • Select an option

  • Save lawreyios/8cd23e2af0d5bed1a5ae8b8086f56a5c to your computer and use it in GitHub Desktop.

Select an option

Save lawreyios/8cd23e2af0d5bed1a5ae8b8086f56a5c to your computer and use it in GitHub Desktop.
import 'package:url_launcher/url_launcher.dart';
class URLLauncher {
launchURL(String url) async {
if (await canLaunch(url)) {
await launch(url);
} else {
throw 'Could not launch $url';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment