一款flutter插件用于获取android和iOS的设备信息
- 在项目开发中跟接口打交道是家常便饭,大多数的接口在请求的时候是需要传递一些初始参数的比如需要传递项目的版本号,uuid等,下面介绍的这款插件主要是为了方便大家获取这些参数,很简单
项目地址: https://github.com/wozhizhizhi/flutter_getuuid
使用需知
引入
如果想用github上最新版本:
dependencies:
flutter_getuuid:
git:
url: https://github.com/wozhizhizhi/flutter_getuuid.git
如何使用
static netFetch() async {
/// 获取手机的UUID
uuid = await FlutterGetuuid.platformUid;
/// 获取手机的型号如“iPhone7”
phoneMark = await FlutterGetuuid.platformDeviceModle;
/// 获取项目的版本号
version = await FlutterGetuuid.platformVersionCode;
/// 获取系统SDK版本
systemMark = await FlutterGetuuid.platformSystemMark;
}
网友评论