We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我用两个ios的测试手机进行测试:
在 ios12.4.6 上: var filePath = await ImagePickerSaver.saveFile(fileData: data); 这行代码可以正常执行,并可以获取到filePath
在ios13.2.3上 var filePath = await ImagePickerSaver.saveFile(fileData: data); 这行代码执行完,没有继续向下执行,图片保持了,但是没法取到filePath
The text was updated successfully, but these errors were encountered:
我也发现了这个问题,测试设备是 iOS 13.4.1 ,同样是图片能成功保存到本地,但是会输出filePath为null
Sorry, something went wrong.
It's not even that path is null, it's worse, the whole call is blocking.
null
END is never logged.
END
log('PRE RESPONSE'); var response = await http.get(_campaign.creatives[0].assets[0].url); log('POST RESPONSE'); String path = await ImagePickerSaver.saveFile(fileData: response.bodyBytes); log('END');
No branches or pull requests
我用两个ios的测试手机进行测试:
在 ios12.4.6 上:
var filePath = await ImagePickerSaver.saveFile(fileData: data);
这行代码可以正常执行,并可以获取到filePath
在ios13.2.3上
var filePath = await ImagePickerSaver.saveFile(fileData: data);
这行代码执行完,没有继续向下执行,图片保持了,但是没法取到filePath
The text was updated successfully, but these errors were encountered: