Questions tagged [flutter-downloader]

32 questions
4
votes
1 answer

Flutter Downloader: Failed to apply plugin class 'org.jlleitschuh.gradle.ktlint.KtlintBasePlugin'

After upgrading to Flutter 3.3.7, and running "flutter pub outdated && flutter pub upgrade" I tried to build my app as usual. But then this showed up. "A problem occurred evaluating project ':flutter_downloader'". I added a new issue in…
arg0nath
  • 111
  • 2
  • 9
2
votes
2 answers

dart Isolate listen don't triggered (or work)

My class: import 'dart:isolate'; import 'dart:ui'; import 'package:flutter_downloader/flutter_downloader.dart'; class SettingsPage extends StatefulWidget with WidgetsBindingObserver { SettingsPage({Key? key}) : super(key: key); @override …
2
votes
1 answer

flutter_downloader download issue in Flutter

I'm using flutter_downloader package for download files in Flutter. File gets downloaded in Downloads folder. After file downloaded notification showing failed to download and the below error is throwing. I trapped on this error almost 2 days, your…
Anand
  • 4,355
  • 2
  • 35
  • 45
1
vote
1 answer

instagram and facebook videos not downloading using flutter_downloader

I am making a Flutter video download manager. I am using flutter_downloader plugin. But the problem being faced is that either video is not downloading or it is not playing if downloaded. Below is the code to download the video from Facebook and…
1
vote
3 answers

LateInitializationError: Field '_localPath@71099368' has not been initialized

I am trying to create a downloads_page to show download Item list from localStorage. I am using flutter_downloader with flutter_inappwebview widget. I'm getting this error while downloading file from webview in the app. Please help me fix this…
1
vote
2 answers

Flutter ReceiverPort don't listen

I'm using the flutter_downloader package to download files with my app. The progress notification is working nicely. but my ReceivePort is not listening to the progress. final ReceivePort port = ReceivePort(); @override void initState() { …
MedCh
  • 355
  • 4
  • 9
1
vote
0 answers

Flutter Local File Downloader

Here I need some help about flutter local file downloading. Currently I am use this code to download Web local file(PDF) here is code : savePDF( var bytes, OnlineOrderDetailsModel itemsDetails, ) { html. AnchorElement( href: …
Fsd Ramjan
  • 151
  • 2
  • 12
1
vote
0 answers

Running flutter downloader sheduled in background using WorkManager

What i am trying to do is run Flutter Downloader package to download a list of files at a particular time every day, i have used WorkManager to schedule and run the task, but the task does not run, i currently set it to check the scheduled download…
mbakabilal
  • 189
  • 2
  • 12
1
vote
2 answers

Flutter_downloader download keep failing

Flutter_downloader is not downloading my file, this is the log when i run the code :: DownloadWorker…
mbakabilal
  • 189
  • 2
  • 12
1
vote
1 answer

How to change notification title for flutter_downloader package?

In my app i add pdf download functionality using flutter_downloader package. below is my Function to download a file. static Future downloadPdf(String path, String downloadLink) async { final taskId = await FlutterDownloader.enqueue( …
Dhaval Chaudhari
  • 417
  • 8
  • 22
1
vote
0 answers

Flutter_Downloader how to check when all the download are finished

how can i check when all the download are finished with flutter_downloader package? I have many downloads and i would like check when all the download are finished and not one by one. Thank you
amepro
  • 43
  • 7
0
votes
0 answers

Flutter: Download PDF files from server fail

When to try to download PDF file (from our host), it start download, and the notification start to appear, but finally it fail to download. Here the log report show the error D/ColorViewRootUtil( 8717): nav bar mode ignore false downX 581 downY…
slackgate
  • 57
  • 2
  • 7
0
votes
0 answers

Unable to download private files (e.g.: files which are accessed through login)

Unable to download private files (e.g.: files which are accessed through login) I am use inappWebView plugin for my app. When I try to download any file (for example, book from a website which requires login to download books) i get success in the…
0
votes
0 answers

Unable to Download Files Using flutter_inappwebview in Flutter

I'm using the flutter_inappwebview package to display web content within my app. I've run into an issue where I'm unable to download files from within the webview. When detecting onDownloadStartRequest, I'm using the flutter_downloader package to…
0
votes
1 answer

i can't download packages in vs for flutter

my country is banned and i am using vpn to acsess . while i get a error to download packages that i need error is like this in vs code Failed to download…
1
2 3