admin管理员组文章数量:1221252
I'm developing a clothing management app for Android devices using Flutter. Text data related to clothes (material, color, season, imageUrl...) is stored in Firebase Database, and images are stored in Storage.
I've developed up to the point of loading text & image data from Firebase to show the digital wardrobe screen, and everything was working fine until the day before yesterday.
Current Issue:
Starting today, image data loading is suddenly failing. While I can access Firebase Database properly, I can't load image data stored in Storage. When I try to access it with the code below;
Widget _buildClothImage(cloth) {
return cloth.imagePath != null
? Imagework(
cloth.imagePath!,
fit: BoxFit.cover,
)
: Container(
color: Colors.grey[200],
child: const Icon(Icons.image, size: 40),
);
}
I got this error:
I/flutter (24492):
本文标签: Flutter amp FirebaseImage loading failure from Firebase Storage on Android test deviceStack Overflow
版权声明:本文标题:Flutter & Firebase - Image loading failure from Firebase Storage on Android test device - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1739326740a2158283.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论