flutter_updater 0.2.5 copy "flutter_updater: ^0.2.5" to clipboard
flutter_updater: ^0.2.5 copied to clipboard

flutter apk downloader for android with automatic install.

flutter_update #

A Flutter download plugin for android device,when download finished,plugin will automatic open archive, permission should be handle by yourself,(file write/read .etc).

Getting Started #

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android .

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

simple usage #

implementation

path_provider

or

define some else

final Directory directory = await getTemporaryDirectory();
    FlutterUpdater.instance()
      ..registerCallback(
          successBlock: (updater, result) {
            print("成功啦");
            updater.dispose();
            return;
          },
          progressBlock: (receiveProgress, total) {},
          failureBlock: (updater, reason, flag) {
            print("失败啦$reason");
            updater.dispose();
            return;
          })
      ..download(
          url: "http://download.dcloud.net.cn/HBuilder.9.0.2.macosx_64.dmg",
          savePath: "${directory.path}/xxx/",
          callback: (f) {
            print("ooooobbbbbjjj===>>$f");
          });
0
likes
5
pub points
23%
popularity

Publisher

unverified uploader

flutter apk downloader for android with automatic install.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

dio, flutter, path

More

Packages that depend on flutter_updater