网址启动器插件无法正常工作的原因可能是什么?

时间:2019-08-21 20:27:38

标签: flutter

我想在我的页面上使用Url启动器插件。当我从网络上单击图片时,我希望Url启动器插件打开我的Pdf文件,但是没有发生。你能告诉我正确的密码吗?

library(tidyverse)
library(lubridate)

example <- c("8-Dec-09")
example_asdate <- dmy(example)
head(example_asdate)
#[1] "2009-12-08" 

Patient <- Patient %>% mutate(DATE_OF_BIRTH = dmy(DATE_OF_BIRTH))

1 个答案:

答案 0 :(得分:1)

您可以使用以下代码段打开PDF文件
请将http://test.com/Android/sample.pdf更改为您的pdf链接位置

Future<void> _launchInBrowser(String url) async {
    if (await canLaunch(url)) {
      await launch(url, forceSafariVC: false, forceWebView: false);
    } else {
      throw 'Could not launch $url';
    }
  }
...

RaisedButton(
                onPressed: () => setState(() {
                  _launched = _launchInBrowser("http://test.com/Android/sample.pdf");
                }),
                child: const Text('Launch in browser'),
              ),

执行结果

enter image description here