mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-03 16:19:51 +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(
|
||||
imageUrl: _product.imageUrls[0],
|
||||
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),
|
||||
|
@ -83,6 +83,7 @@ flutter:
|
||||
- assets/icons/star.svg
|
||||
- assets/icons/half-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
|
||||
# https://flutter.dev/assets-and-images/#resolution-aware
|
||||
|
Loading…
Reference in New Issue
Block a user