download 1.0.0 copy "download: ^1.0.0" to clipboard
download: ^1.0.0 copied to clipboard

Cross-Platform file downloader for Dart and Flutter projects.

Cross-Platform file downloader for Dart and Flutter projects.

pub package

Demo #

Web Demo

Features #

Supports these platforms:

  • Android
  • iOS
  • Linux
  • MacOS
  • Web
  • Windows

There are a few caveats about this package:

  • On the web it caches the contents in a Blob and eventually saves the file in browser's default location.
  • On desktop it saves the file in absolute or relative path.
  • On mobile it saves the file in absolute or relative path, but we should ask/ensure if the app has the required permissions.
  • On the web, not supported in IE or Edge (prior version 18), or in Safari (prior version 10.1).

Getting started #

In your pubspec.yaml file add:

dependencies:
  download: any

Then, in your code import:

import 'package:download/download.dart';

Usage #

final stream = Stream.fromIterable('Hello World!'.codeUnits);
download(stream, 'hello.txt');

Please refer to /example folder for a working example.

Additional information #

Please feel free to contribute to the project or file an issue.

62
likes
140
pub points
95%
popularity

Publisher

verified publisherpwa.ir

Cross-Platform file downloader for Dart and Flutter projects.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on download