Questions tagged [flutter-downloader]

32 questions
0
votes
0 answers

not found partial downloaded data, this task cannot be resumed

in this code I made flutter downloader i want to resume after stop and retry after failed but i get this errror not found partial downloaded data, this task cannot be resumed or ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception:…
0
votes
0 answers

Flutter : Unable to download a drm video in flutter using flutter downloader

Whenever I try to download a DRM video using flutter downloader it fails every time. However regular .mp4 is getting downloaded just fine. How can I download drm videos in flutter?
0
votes
0 answers

Is there any way to download file converted by webcontent_converter package?

I have some pdf content which i retrieved from the API and i converted it using webcontent_converter package. But when i try to download it, it is throwing error or not downloading. here is the code: var dir = await…
0
votes
0 answers

flutter_downloader local network

I just started using flutter and tried the file download feature using the flutter_downloader plugin (link). When this plugin is used and there is internet access, the feature runs. But when this plugin is used on a local network, this feature…
LeanDev
  • 251
  • 6
  • 19
0
votes
0 answers

How to get the Downling progress from the Flutter Downloader Package

Im using flutter downloder for downloading the files from url. its working fine but i want to display a progress of downloads for user. Can some please explain me how to get the progress data. I got the progress Thank you. class…
0
votes
1 answer

The method '_requestDownload' isn't defined for the type '_WebViewTabState'

I am trying to use flutter_downloader for downloads within InAppWebView. I am trying to use onDownloadStartRequest function of InAppWebViewController to access flutter_downloader download task function, _requestDownload from another file. But I'm…
0
votes
0 answers

Cannot download a PDF in Flutter and show error

I am trying to develop an app that downloads files from URLs, such as images, pdf, videos and etc, I am using Android 12 for Mobile device and these Plugin : path_provider_android: ^2.0.12 flutter_downloader: ^1.7.3 permission_handler:…
Sana'a Al-ahdal
  • 1,684
  • 1
  • 17
  • 33
0
votes
2 answers

flutter_downloader notification wrongly showing?

I'm using flutter_downloader: ^1.9.1 to download files. It's working fine, The file gets downloaded in the download folder. But the issue is after the file is downloaded the notification wrongly shows as failed and, On the notification click it's…
0
votes
0 answers

Futter provider not working in release version

I am building an app where users can download videos, i used provider for state mangagement and the flutter_downloader package to handle downloads, in the debug version of the app (The version where i am building the app) notifyListener is working…
mbakabilal
  • 189
  • 2
  • 12
0
votes
0 answers

when I am trying to download a pdf file inside inappwebview, but the app crashes and android studio loses connection

W/System.err( 3983): java.lang.IllegalArgumentException: Couldn't find meta-data for provider with authority com.example.bu_app.flutter_downloader.provider W/System.err( 3983): at…
0
votes
2 answers

flutter_downloader auto open file when complete

so I'm trying to work with download manager in flutter using flutter_downloader package. I manage to make my app download the file I wanted. How can I make my app more advance ? I wanted my app to be able to open the downloaded file automatically…
Kim San
  • 575
  • 7
  • 22
0
votes
1 answer

flutter_downloader In the release version, it crashes (on Android)

I use flutter_downloader (on Android) Everything is correct in debug and profile mode and works well, but in the release version, after hitting the download button, the program crashes and that's it!
Sh4msi
  • 1,231
  • 13
  • 15
0
votes
1 answer

flutter_downloader if file exist continue to download next file

i download a file from a xml playlist, but i want if the file exist flutter_downloader continue with the next file download, how can i do this ? In this case download and check only the first file in playlist /// check if have permissions …
amepro
  • 43
  • 7
0
votes
1 answer

Flutter Downloader downloads failed all the time, no such location

i'm trying to download .pdf from a API, but every time the download fails, i already have all the permissions set. I think that the downloader didn't find the folder to save the file, or is looking for the file in the folder. Anyway here is the…
0
votes
2 answers

Error: UnimplementedError when Intializing flutter downloader

I've created a app where I can download a file through the server.The file can be of type image,video ,pdf or text.For this I've used flutter_downloader package class ResourceScreen extends StatefulWidget { @override _ResourceScreenState…