# flutter_update **Repository Path**: bop_flutter/flutter_update ## Basic Information - **Project Name**: flutter_update - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2021-03-08 - **Last Updated**: 2022-03-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # flutter_update * Flutter App版本更新逻辑处理插件,区分平台 * iOS跳转到AppStore * Android执行apk安装 ## 用法 ``` if (defaultTargetPlatform == TargetPlatform.iOS) { FlutterUpdate.jumpAppStore(url); } else { FlutterUpdate.install(filePath); } ```