Files
tripz/lib/controller/functions/launch.dart
Hamza-Ayed 5a7c09eb06 first
2023-08-04 15:06:57 +03:00

10 lines
214 B
Dart

import 'package:url_launcher/url_launcher.dart';
void launchUrl1(String url) async {
if (await canLaunchUrl(Uri.parse(url))) {
launchUrl(Uri.parse(url));
} else {
print('Could not launch $url');
}
}