Flutter WEB download option

前端 未结 6 1762
萌比男神i
萌比男神i 2021-01-01 15:43

I am making flutter web app that should generate a file from user data. And have the option to download the output file.

But I can not find any options/packages whic

6条回答
  •  执笔经年
    2021-01-01 15:50

    Simple Code for redirecting to download URL

    import 'dart:html' as html;
    void downloadFile(String url){
       html.AnchorElement anchorElement =  new html.AnchorElement(href: url);
       anchorElement.download = url;
       anchorElement.click();
    }
    

提交回复
热议问题