Files
test18sephybrid1/test18sephybrid1-myfrontend-f/authsec_flutter/lib/utilities/url_external_launcher.dart
T

13 lines
305 B
Dart
Raw Normal View History

2026-09-18 18:42:49 +00:00
import 'package:url_launcher/url_launcher.dart';
Future<void> launchExternalURL(String url) async {
Uri uri =Uri.parse(url);
if (await canLaunchUrl(uri)) {
await launchUrl(uri,mode: LaunchMode.externalApplication);
}
// else {
// throw 'Could not launch $url';
// }
}