We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Screenshots
Desktop (please complete the following information):
Device information:
Additional context
The text was updated successfully, but these errors were encountered:
i have same issue if anyone knows exact solution let me know
Sorry, something went wrong.
i resolved in my code has this issue
void PDFDownloadURL(String url,String name) async { print("Applicant Resume download"); final mediastatus=await Permission.mediaLibrary.request(); print(mediastatus); if(mediastatus.isGranted){ final baseStorage=await getExternalStorageDirectory(); final id=await FlutterDownloader.enqueue( url: url, savedDir:baseStorage!.path, fileName: "${name}_Resume.pdf", showNotification: true, // show download progress in status bar (for Android) openFileFromNotification: true, // click on notification to open downloaded file (for Android) ); } else{ print("NO permission"); }
} I added this Permission.mediaLibrary.request(); insted of Permission.storage.request();
No branches or pull requests
Describe the bug
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Screenshots
Desktop (please complete the following information):
Device information:
Additional context
The text was updated successfully, but these errors were encountered: