소스 검색

添加安卓保存权限

tags/0.0.1
Weller 4 년 전
부모
커밋
98cf893979
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. +11
    -0
      lib/pages/goods_share_page/goods_share_image/goods_share_image.dart

+ 11
- 0
lib/pages/goods_share_page/goods_share_image/goods_share_image.dart 파일 보기

@@ -279,6 +279,17 @@ class _GoodsShareImageState extends State<GoodsShareImage>
return null;
}

// 检查并请求权限
status = await Permission.storage.status;
if (status != PermissionStatus.granted) {
status = await Permission.storage.request();
}
if (status == PermissionStatus.denied) {
Fluttertoast.showToast(msg: '暂无权限,分享失败');
return null;
}


bool isSaveSuccess = false;
if (_shareModel.poster != null) {
isSaveSuccess = await SaveImage.save(imageBytes: _shareModel.poster);


불러오는 중...
취소
저장