Skip to content

检查更新插件(Android平台安装apk,iOS平台跳转到App Store)

License

Notifications You must be signed in to change notification settings

JackZhang1994/flutter_update

Repository files navigation

flutter_update

  • Flutter App版本更新逻辑处理插件,区分平台
  • iOS跳转到AppStore
  • Android执行apk安装

用法

   if (defaultTargetPlatform == TargetPlatform.iOS) {
       FlutterUpdate.jumpAppStore(url);
   } else {
       FlutterUpdate.install(filePath);
   }