71 lines
1.5 KiB
Dart
71 lines
1.5 KiB
Dart
import 'package:url_launcher/url_launcher.dart';
|
|
import 'dart:io';
|
|
|
|
void showInBrowser(String url) async {
|
|
if (await canLaunchUrl(Uri.parse(url))) {
|
|
launchUrl(Uri.parse(url));
|
|
} else {
|
|
print('Could not launch $url');
|
|
}
|
|
}
|
|
|
|
void launchCommunication(
|
|
String method, String contactInfo, String message) async {
|
|
String url;
|
|
|
|
if (Platform.isIOS) {
|
|
switch (method) {
|
|
case 'phone':
|
|
url = 'tel:$contactInfo';
|
|
break;
|
|
|
|
case 'sms':
|
|
url = 'sms:$contactInfo?body=$message';
|
|
break;
|
|
|
|
case 'whatsapp':
|
|
url = 'https://api.whatsapp.com/send?phone=$contactInfo&text=$message';
|
|
break;
|
|
|
|
case 'email':
|
|
url = 'mailto:$contactInfo?subject=Subject&body=$message';
|
|
break;
|
|
|
|
default:
|
|
print('Method not supported on iOS');
|
|
return;
|
|
}
|
|
} else if (Platform.isAndroid) {
|
|
switch (method) {
|
|
case 'phone':
|
|
url = 'tel:$contactInfo';
|
|
break;
|
|
|
|
case 'sms':
|
|
url = 'sms:$contactInfo?body=$message';
|
|
break;
|
|
|
|
case 'whatsapp':
|
|
url = 'whatsapp://send?phone=$contactInfo&text=$message';
|
|
break;
|
|
|
|
case 'email':
|
|
url = 'mailto:$contactInfo?subject=Subject&body=$message';
|
|
break;
|
|
|
|
default:
|
|
print('Method not supported on Android');
|
|
return;
|
|
}
|
|
} else {
|
|
print('Platform not supported');
|
|
return;
|
|
}
|
|
|
|
if (await canLaunchUrl(Uri.parse(url))) {
|
|
launchUrl(Uri.parse(url));
|
|
} else {
|
|
print('Could not launch $url');
|
|
}
|
|
}
|