将图像从 firebase 显示到颤振应用程序 [关闭]

Posted

技术标签:

【中文标题】将图像从 firebase 显示到颤振应用程序 [关闭]【英文标题】:Displaying images from firebase to flutter app [closed] 【发布时间】:2020-09-03 12:47:45 【问题描述】:

我想知道如何使用列表视图将存储在 firebase 中的图像显示到我的颤振应用程序中。请简要说明如何进行。例如,烘焙产品图像要从 Firebase 显示到我的烘焙应用程序以及价格。请大家帮忙

【问题讨论】:

github.com/ptyagicodecamp/flutter_cookbook/blob/widgets/… 这里是示例代码 谢谢我会实现它。 【参考方案1】:

获取特定图片的网址:

final ref = FirebaseStorage.instance.ref().child('nameofimage');
// no need of the file extension, just the name does the job
var url = await ref.getDownloadURL();
print(url);

当你有 URL 时,你可以使用它:

Image.network(url);

【讨论】:

您好,如果我有很多图像要在列表视图中显示,可以这样吗? 这应该可以。只需将图像的名称与将要加载的其他信息一起保存即可。

以上是关于将图像从 firebase 显示到颤振应用程序 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

使用颤振将图像上传并存储到firebase

从颤振上传图像到firebase存储

将图像从颤振上传到火力基地(没有任何反应)

是否可以使用 Firebase 存储将多个图像添加到 Firebase 数据库? - 颤振

将数据从 FireBase 检索到颤振项目时出错

如何使用 StreamBuilder 将数据从 firebase firestore 检索到颤振中,并使用 ListView.builder 显示值?