mramonlopez/cordova-plugin-file-downloader

How can I get download percentage?

kid1412621 opened this issue · 3 comments

I've tried this :

document.addEventListener('DOWNLOADER_downloadProgress', function(event) {
        let data = event.data
        console.log('processing', data)
})

But I got nothing in console, could you give a demo?

I've get it working by using this:

document.addEventListener('DOWNLOADER_downloadProgress', (event: any) => {
  let data = event.data;
  console.log(data);
})

also I've added all my event listeners in component constructor.

@kid1412621
did you get the download progress even i am getting the same problem