Fix naming
This commit is contained in:
parent
d885ef45f9
commit
91afb1d759
9 changed files with 9 additions and 9 deletions
Before ![]() (image error) Size: 68 KiB After ![]() (image error) Size: 68 KiB ![]() ![]() |
Before ![]() (image error) Size: 30 KiB After ![]() (image error) Size: 30 KiB ![]() ![]() |
|
@ -9,9 +9,9 @@ class Carousel extends StatefulWidget {
|
|||
}
|
||||
|
||||
final List<String> imgList = [
|
||||
'assets/images/Carousel_1.webp',
|
||||
'assets/images/Carousel_2.webp',
|
||||
'assets/images/Carousel_3.webp'
|
||||
'assets/images/carousel_1.webp',
|
||||
'assets/images/carousel_2.webp',
|
||||
'assets/images/carousel_3.webp'
|
||||
];
|
||||
|
||||
class _CarouselState extends State<Carousel> {
|
||||
|
|
|
@ -48,7 +48,7 @@ class _CartBoxState extends State<CartBox> {
|
|||
color: Color(0xff8B0000),
|
||||
),
|
||||
errorWidget: (context, url, error) =>
|
||||
Image.asset('assets/images/image-error.webp'),
|
||||
Image.asset('assets/images/image_error.webp'),
|
||||
fadeOutDuration: const Duration(milliseconds: 5),
|
||||
imageBuilder: (context, imageProvider) => Container(
|
||||
width: 300,
|
||||
|
|
|
@ -39,7 +39,7 @@ class _ProductBoxState extends State<ProductBox> {
|
|||
color: Color(0xff8B0000),
|
||||
),
|
||||
errorWidget: (context, url, error) =>
|
||||
Image.asset('assets/images/image-error.webp'),
|
||||
Image.asset('assets/images/image_error.webp'),
|
||||
fadeOutDuration: const Duration(milliseconds: 5),
|
||||
imageBuilder: (context, imageProvider) => Container(
|
||||
width: 300,
|
||||
|
|
|
@ -50,7 +50,7 @@ class ProductCard extends StatelessWidget {
|
|||
),
|
||||
),
|
||||
errorWidget: (context, url, error) =>
|
||||
Image.asset('assets/images/image-error.webp'),
|
||||
Image.asset('assets/images/image_error.webp'),
|
||||
fadeOutDuration: const Duration(milliseconds: 5),
|
||||
imageBuilder: (context, imageProvider) => Container(
|
||||
height: 132,
|
||||
|
|
|
@ -58,7 +58,7 @@ Widget productDetail(context, id) {
|
|||
color: Color(0xff8B0000),
|
||||
),
|
||||
errorWidget: (context, url, error) =>
|
||||
Image.asset('assets/images/image-error.webp'),
|
||||
Image.asset('assets/images/image_error.webp'),
|
||||
fadeOutDuration: const Duration(milliseconds: 5),
|
||||
imageBuilder: (context, imageProvider) =>
|
||||
Container(
|
||||
|
|
|
@ -26,7 +26,7 @@ class _TransactionProductBoxState extends State<TransactionProductBox> {
|
|||
color: Color(0xff8B0000),
|
||||
),
|
||||
errorWidget: (context, url, error) =>
|
||||
Image.asset('assets/images/image-error.webp'),
|
||||
Image.asset('assets/images/image_error.webp'),
|
||||
fadeOutDuration: const Duration(milliseconds: 5),
|
||||
imageBuilder: (context, imageProvider) => Container(
|
||||
width: 300,
|
||||
|
|
|
@ -109,7 +109,7 @@ class _CartState extends State<Cart> {
|
|||
child: Container(
|
||||
decoration: const BoxDecoration(
|
||||
image: DecorationImage(
|
||||
image: AssetImage('assets/images/cart-empty.webp')
|
||||
image: AssetImage('assets/images/cart_empty.webp')
|
||||
)
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Add table
Reference in a new issue