Flutter WEB download option

前端 未结 6 1809
萌比男神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 16:13

    A good workaround is to open the hosted file in a new tab using

    import 'dart:html' as html;
    
    openInANewTab(url){
      html.window.open(url, 'PlaceholderName');
    }
    

    Fits well for my use case.

提交回复
热议问题