首页 > 其他 > 详细

flutter

时间:2019-11-04 20:14:14      阅读:80      评论:0      收藏:0      [点我收藏+]
上传头像
Future getImage() async { var image = await ImagePicker.pickImage(source: ImageSource.gallery); ItemDao.UpLoad(image).then((res){ if(res[‘resultCode‘] == ‘ok‘){ setState(() { url = res[‘fileId‘]; }); }else{ Fluttertoast.showToast( msg: res[‘codeDesc‘], backgroundColor: Color(GSYColors.toastBg), textColor: Color(GSYColors.titleBlack)); return; } }).catchError((e){ print(e.toString()); }); setState(() { if (image != null) _image = image; }); }

 

 

flutter

原文:https://www.cnblogs.com/xiaopenzai/p/11792629.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!