作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我的问题是如何在创建后关闭启动器 View ?
urlLauncher(String url) async {
if (await canLaunch(url)) {
await launch(url, forceWebView: true);
} else {
throw 'Could not launch $url';
}
}
最佳答案
我找到了一个解决方案此拉取请求添加了 closeWebView 方法,以便可以通过编程方式关闭 Web View 。要使用拉取请求的版本,请在 pubspec.yaml 中使用:
dependencies:
url_launcher:
git:
url: git://github.com/flutter/plugins.git
path: packages/url_launcher
ref: 2c56dd4cca2f5b85619eaea425baccb1e0600886
检查 yaml 文件中的缩进,因为这非常重要..
关于dart - 如何在 flutter/dart 中关闭 Launcher web View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53331067/
我是一名优秀的程序员,十分优秀!