FLUTTER ECOSYSTEM

azhon/flutter_app_update

Flutter用のシンプルで軽量かつカスタマイズ可能なAndroidバージョンアップデートライブラリ

flutter_app_update のプロジェクト画像
Stars
54
Forks
19
最終プッシュ(UTC)
2026/07/14
プロジェクト状態
公開中
Code Porter GitHub avatar
GITHUB User

Code Porter ↗

JiangXi,China公式サイト ↗
言語DartKotlinObjective-CRubySwift

このリポジトリが公開するパッケージ

使用している依存関係

依存関係一覧 3 件
  • flutter{"sdk":"flutter"}
  • flutter_test開発用{"sdk":"flutter"}
  • flutter_lints開発用^2.0.0

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる
Chinese Doc
一、Introduce
dependencies:
  flutter_app_update: ^latest_version
  • Create UpdateModel and set apk url
 UpdateModel model = UpdateModel(
   url,
   "flutterUpdate.apk",
   /// android res/mipmap icon name
   "ic_launcher",
   'https://itunes.apple.com/cn/app/xxxx',
 );
 AzhonAppUpdate.update(model).then((value) => debugPrint('$value'));
  • Add listener
@override
void initState() {
  super.initState();
  AzhonAppUpdate.listener((ResultModel model) {
    debugPrint('$model');
  });
}
三、Screenshot

https://raw.githubusercontent.com/azhon/FlutterAppUpdate/main/example/img/en/img1.jpg https://raw.githubusercontent.com/azhon/FlutterAppUpdate/main/example/img/en/img2.jpg https://raw.githubusercontent.com/azhon/FlutterAppUpdate/main/example/img/en/img3.jpg https://raw.githubusercontent.com/azhon/FlutterAppUpdate/main/example/img/en/img4.jpg