mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-04 16:03:13 +00:00
e186dac39f
Also fixed issue of calling URI with duplicate protocol Closes: #184
14 lines
247 B
Dart
14 lines
247 B
Dart
import 'package:url_launcher/url_launcher.dart';
|
|
|
|
void launchURL(final url) async {
|
|
try {
|
|
final Uri uri = Uri.parse(url);
|
|
await launchUrl(
|
|
uri,
|
|
mode: LaunchMode.externalApplication,
|
|
);
|
|
} catch (e) {
|
|
print(e);
|
|
}
|
|
}
|