import 'package:url_launcher/url_launcher.dart'; /// UrlLauncher工具类 class UrlLauncherUtil { /// 打开微信 static Future openWeChat() async { const url = 'weixin://'; return openUrl(url); } /// 打开iOS系统键盘设置页 static openIosSystemKeyboardPage() { const url = 'app-settings:'; return openUrl(url); } /// 打开Url static Future openUrl(String url) async { if (!await launchUrl(Uri.parse(url))) { return Future.value(false); } return Future.value(true); } }