mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-02 23:59:36 +00:00
default image added
This commit is contained in:
parent
f365654bb5
commit
6cbe514192
BIN
assets/img/default-white.png
Normal file
BIN
assets/img/default-white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
@ -177,7 +177,23 @@ class CartItem extends StatelessWidget{
|
||||
Container(
|
||||
width: 100,
|
||||
alignment: Alignment.center,
|
||||
child: Image(image: NetworkImage(_product.imageUrls[0]),),
|
||||
child: Image.network(
|
||||
_product.imageUrls[0],
|
||||
loadingBuilder: (BuildContext context, Widget child, ImageChunkEvent? loadingProgress) {
|
||||
if (loadingProgress == null) return child;
|
||||
return Center(
|
||||
child: CircularProgressIndicator(
|
||||
value: loadingProgress.expectedTotalBytes != null
|
||||
? loadingProgress.cumulativeBytesLoaded / loadingProgress.expectedTotalBytes!
|
||||
: null,
|
||||
),
|
||||
);
|
||||
},
|
||||
errorBuilder: (BuildContext context, Object exception, StackTrace? stackTrace) {
|
||||
// Повертає зображення за замовчуванням у випадку помилки
|
||||
return Image.asset('../assets/img/default-white.png');
|
||||
},
|
||||
),
|
||||
),
|
||||
SizedBox(width: 20),
|
||||
Expanded(
|
||||
|
Loading…
Reference in New Issue
Block a user