Files
authsec_flutter_hybrid/lib/utilities/url_external_launcher.dart
T

13 lines
305 B
Dart
Raw Normal View History

2026-09-12 11:22:07 +05:30
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';
// }
}