Reputation: 163
My team is building an app which has lists of pdf included (informational app type). And Users want to download specific file to the local storage and share to other platforms. I am using localstorage
flutter package to do that. But it is not working.
Has anyone done it before or have similar idea I can rely on?
Thanks for your help.
Upvotes: 0
Views: 2147
Reputation: 9625
If you want to download a file, then localStorage
is not the package for you. That is a package for storing JSON based data.
You can use a package like download_manager to manage and download the PDF files.
Upvotes: 1