diff --git a/assets/images/cart_empty.webp b/assets/images/cart_empty.webp new file mode 100644 index 0000000..d9af1f4 Binary files /dev/null and b/assets/images/cart_empty.webp differ diff --git a/lib/screens/cart.dart b/lib/screens/cart.dart index e6dd7a6..6375631 100644 --- a/lib/screens/cart.dart +++ b/lib/screens/cart.dart @@ -95,7 +95,7 @@ class _CartState extends State { return CartBox( controller: true, imageUrl: - 'https://i.ibb.co/QJFLZC4/La-Darknesss-Portrait.webp', + 'https://telegra.ph/file/75f075e858198e4e7898a.png', title: 'Loading...', quantity: 0, plus: () {}, @@ -111,8 +111,9 @@ class _CartState extends State { child: Container( decoration: const BoxDecoration( image: DecorationImage( - image: AssetImage( - 'assets/images/image_empty.webp'))), + image: + AssetImage('assets/images/cart_empty.webp'), + fit: BoxFit.contain)), ), ); }