http downloader – A app to download file from Internet

  Downloader, Flutter App, Plugin, plugin

About

A simple flutter app that downloads a file from the internet, shows a custom-made download progress dialog and saves the file to device’s internal storage.

http_downloader

A simple flutter app that downloads a file from the internet using the http plugin.
It has a custom-designed progress dialog which displays the download percentage to the user leveraging the power of the provider package.
It also has an option to open the file after download. This is down using the open_file plugin.

Note: This only works on Android at the moment. Would be glad to welcome PR for an iOS fix.

Install the packages

http: ^0.12.1
open_file: ^3.0.1
permission_handler: ^5.0.0+hotfix.6
provider: ^4.1.1

Add manifest permissions

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

After doing this, the code should work well as expected.
Please file an issue if you come across one.

Download Flutter http downloader app source code on GitHub

https://github.com/Akora-IngDKB/flutter-http-downloader