lemmur-app-android/lib/url_launcher.dart

11 lines
250 B
Dart
Raw Normal View History

import 'package:url_launcher/url_launcher.dart' as ul;
Future<void> urlLauncher(String url) async {
if (await ul.canLaunch(url)) {
await ul.launch(url);
} else {
throw Exception();
2020-08-31 19:04:23 +02:00
// TODO: handle opening links to stuff in app
}
}