我正在使用学校管理应用程序,在这里我需要将图像和视频发送到该应用程序,并允许用户将图像和视频下载到他们的手机库中。我被困住了!
请帮帮我..谢谢
最佳答案
这是可能有用的功能
saveImage(String url) async {
var response = await Dio()
.get(url, options: Options(responseType: ResponseType.bytes));
final result = await ImageGallerySaver.saveImage(
Uint8List.fromList(response.data),
quality: 100,
name: "${widget.id}");
}
为了使用此功能,您必须安装两个软件包(并将它们安装在pubspec.ymal文件中):dio: ^3.0.10
image_gallery_saver: '^1.5.0'
关于image - 如何在Flutter中将图像下载到画廊,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/63502183/