mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-05 00:59:38 +00:00
Changed method for displaying images
This commit is contained in:
parent
d1e8f3c4f2
commit
c29a10c749
@ -181,7 +181,7 @@ class CartItem extends StatelessWidget{
|
|||||||
child: CachedNetworkImage(
|
child: CachedNetworkImage(
|
||||||
imageUrl: _product.imageUrls[0],
|
imageUrl: _product.imageUrls[0],
|
||||||
placeholder: (context, url) => CircularProgressIndicator(),
|
placeholder: (context, url) => CircularProgressIndicator(),
|
||||||
errorWidget: (context, url, error) => Image.asset('../assets/img/default-white.png'),
|
errorWidget: (context, url, error) => Container(color: Colors.white,),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
SizedBox(width: 20),
|
SizedBox(width: 20),
|
||||||
|
@ -83,6 +83,7 @@ flutter:
|
|||||||
- assets/icons/star.svg
|
- assets/icons/star.svg
|
||||||
- assets/icons/half-star.svg
|
- assets/icons/half-star.svg
|
||||||
- assets/icons/empty-star.svg
|
- assets/icons/empty-star.svg
|
||||||
|
- assets/img/default-white.png
|
||||||
|
|
||||||
# An image asset can refer to one or more resolution-specific "variants", see
|
# An image asset can refer to one or more resolution-specific "variants", see
|
||||||
# https://flutter.dev/assets-and-images/#resolution-aware
|
# https://flutter.dev/assets-and-images/#resolution-aware
|
||||||
|
Loading…
Reference in New Issue
Block a user