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